-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
72 lines (72 loc) · 2.02 KB
/
package.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
{
"name": "simple-assert-ok",
"version": "1.0.4",
"description": "A lightweight strongly-typed assert.ok",
"author": {
"name": "Oleksandr T.",
"email": "oleksandr.tarasiuk@outlook.com"
},
"license": "MIT",
"keywords": [
"simpleassert",
"simple-assert-ok",
"assert",
"typed assert",
"typed assert-ok",
"assert-ok",
"assert-ok helper",
"assert helper",
"assertion"
],
"bugs": {
"url": "https://github.com/a-tarasyuk/simple-assert-ok/issues"
},
"homepage": "https://github.com/a-tarasyuk/simple-assert-ok#readme",
"module": "dist-es2015/SimpleAssertOK.js",
"main": "dist-cjs/SimpleAssertOK.js",
"scripts": {
"prepare": "npm run build",
"clean": "rimraf dist-*",
"build:types": "tsc -p tsconfig/types.json",
"build:es2015": "tsc -p tsconfig.json",
"build:cjs": "tsc -p tsconfig/cjs.json",
"build": "run-s clean lint build:*",
"format": "prettier --write \"./**/*.{ts,md}\"",
"format:check": "prettier --list-different \"./**/*.{ts,md}\"",
"lint": "eslint -c .eslintrc src/**/* --ext .ts",
"test": "ts-node -P ./tsconfig/cjs.json ./node_modules/.bin/jasmine --config=spec/support/jasmine.json",
"size": "size-limit"
},
"repository": {
"type": "git",
"url": "git+https://github.com/a-tarasyuk/simple-assert-ok.git"
},
"devDependencies": {
"@size-limit/preset-app": "8.1.0",
"@size-limit/webpack": "8.1.0",
"@types/jasmine": "4.3.1",
"@typescript-eslint/eslint-plugin": "5.48.0",
"@typescript-eslint/parser": "5.48.0",
"eslint": "8.31.0",
"jasmine": "4.5.0",
"npm-run-all": "4.1.5",
"prettier": "2.8.1",
"rimraf": "3.0.2",
"size-limit": "8.1.0",
"ts-node": "10.9.1",
"typescript": "4.9.4"
},
"types": "dist-types/SimpleAssertOK.d.ts",
"size-limit": [
{
"path": "dist-es2015/SimpleAssertOK.js",
"import": "{ assert }",
"limit": "1 kb"
},
{
"path": "dist-cjs/SimpleAssertOK.js",
"import": "{ assert }",
"limit": "1 kb"
}
]
}