-
-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
54 lines (54 loc) · 1.47 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
{
"name": "root",
"private": true,
"devDependencies": {
"@babel/core": "7.17.8",
"@babel/preset-env": "7.16.11",
"@babel/preset-typescript": "7.16.7",
"@types/cbor": "5.0.1",
"@types/is-url": "1.2.30",
"@types/jest": "25.2.3",
"@types/node": "16.11.26",
"@typescript-eslint/eslint-plugin": "2.33.0",
"@typescript-eslint/parser": "2.33.0",
"babel-eslint": "10.1.0",
"babel-jest": "26.6.3",
"coveralls": "3.1.1",
"eslint": "8.12.0",
"eslint-config-adenvt": "4.0.1",
"eslint-config-standard": "16.0.3",
"eslint-plugin-import": "2.25.4",
"eslint-plugin-node": "11.1.0",
"eslint-plugin-promise": "6.0.0",
"eslint-plugin-standard": "4.1.0",
"eslint-plugin-unicorn": "19.0.1",
"eslint-plugin-varspacing": "1.2.2",
"eslint-plugin-vue": "6.2.2",
"husky": "7.0.4",
"jest": "26.6.3",
"jest-progress-bar-reporter": "1.0.21",
"lerna": "4.0.0",
"lint-staged": "10.5.4",
"typedoc": "0.21.10",
"typescript": "3.9.10",
"webpack": "4.46.0"
},
"scripts": {
"bootstrap": "lerna bootstrap --hoist",
"build": "lerna run build",
"test": "jest",
"lint": "eslint --ext js,ts --ignore-path .gitignore .",
"fix": "eslint --ext js,ts --ignore-path .gitignore . --fix",
"lerna:publish": "lerna publish from-git --yes"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged && npm run test"
}
},
"lint-staged": {
"*.(js|ts)": [
"eslint --fix"
]
}
}