forked from fourTheorem/slic-watch
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
46 lines (46 loc) · 1.34 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
{
"name": "slic-watch",
"version": "1.0.7",
"description": "Root project for SLIC Watch",
"main": "index.js",
"repository": {
"type": "git",
"url": "https://github.com/fourTheorem/slic-watch.git"
},
"scripts": {
"install": "lerna bootstrap",
"audit": "npm audit --omit dev && lerna exec npm audit -- --omit dev",
"lint": "eslint .",
"lintfix": "eslint --cache --fix .",
"test:lint": "eslint .",
"test:packages": "lerna run test",
"test": "npm run test:lint && npm run test:packages",
"lerna:sync": "lerna exec --bail npm install && lerna publish --yes --skip-npm --skip-git --repo-version $npm_package_version && npm i && lerna link",
"lerna:publish": "lerna publish --yes --skip-git --no-verify-access --repo-version $npm_package_version",
"prepare": "husky install"
},
"devDependencies": {
"eslint": "^7.26.0",
"eslint-config-standard": "^16.0.2",
"eslint-plugin-import": "^2.23.0",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-promise": "^5.1.0",
"eslint-plugin-standard": "^5.0.0",
"husky": "^6.0.0",
"lerna": "^4.0.0",
"lint-staged": "^11.0.0"
},
"engines": {
"node": ">=12.0"
},
"engineStrict": true,
"license": "Apache",
"lint-staged": {
"*.js": [
"eslint --cache --fix"
]
},
"dependencies": {
"yaml": "^1.10.2"
}
}