-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
64 lines (64 loc) · 2.08 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
{
"name": "spectypes-root",
"version": "2.1.11",
"private": true,
"files": [],
"scripts": {
"preversion": "npm version $npm_new_version -ws && git commit -am up && npm run build && npm run type-check && npm run lint && npm t && npm run type-coverage",
"postversion": "git push && git push --tags",
"lint": "eslint . && npm run lint -ws --if-present",
"build": "npm run build -ws --if-present",
"type-check": "npm run type-check -ws --if-present",
"test": "jest",
"type-coverage": "type-coverage --strict --detail --ignore-files **/dist/** --ignore-files **/blueprint-templates/**/* --ignore-catch"
},
"typeCoverage": {
"atLeast": 99.9
},
"devDependencies": {
"@babel/core": "^7.18.10",
"@babel/parser": "^7.18.10",
"@babel/runtime": "^7.18.9",
"@swc/core": "^1.2.223",
"@swc/jest": "^0.2.22",
"@types/babel__core": "^7.1.19",
"@types/babel__generator": "^7.6.4",
"@types/babel__traverse": "^7.17.1",
"@types/chance": "^1.1.3",
"@types/hash-sum": "^1.0.0",
"@types/jest": "^28.1.6",
"@types/node": "^18.6.3",
"@types/string-hash": "^1.1.1",
"@typescript-eslint/eslint-plugin": "^5.32.0",
"@typescript-eslint/parser": "^5.32.0",
"chance": "^1.1.8",
"eslint": "^8.21.0",
"eslint-config-prettier": "^8.5.0",
"eslint-config-standard-with-typescript": "^22.0.0",
"eslint-plugin-functional": "^4.2.2",
"eslint-plugin-import": "^2.26.0",
"eslint-plugin-no-null": "^1.0.2",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-prettier": "^4.2.1",
"eslint-plugin-promise": "^6.0.0",
"fast-check": "^3.1.1",
"glob": "^8.0.3",
"hash-sum": "github:iyegoroff/hash-sum",
"jest": "^28.1.3",
"prettier": "^2.7.1",
"string-hash": "^1.1.3",
"stringify-parse": "^1.0.6",
"ts-assert-unreachable": "^0.0.9",
"ts-is-record": "^3.0.5",
"ts-jest": "^28.0.7",
"ts-micro-dict": "^10.0.6",
"ts-tiny-invariant": "^2.0.4",
"type-coverage": "^2.22.0",
"typescript": "^4.7.4"
},
"workspaces": [
"./packages/*",
"./examples/*",
"./benchmark"
]
}