forked from svrxjs/svrx
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
56 lines (56 loc) · 1.49 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
{
"name": "root",
"private": true,
"scripts": {
"build": "lerna run build",
"lint": "run-p lint:*",
"lint:js": "eslint \"**/*.js\"",
"fix": "run-p fix:*",
"fix:js": "eslint \"**/*.js\" --fix",
"test": "lerna run test",
"clean": "run-s clean:*",
"clean:dependency": "lerna clean -y && rimraf -rf node_modules",
"report-coverage": "lerna run report-coverage",
"lerna:version": "lerna version",
"lerna:publish": "lerna publish from-git --yes",
"postinstall": "lerna exec -- npm install",
"prepare": "npm run build",
"prepublishOnly": "lerna exec -- npm prune --production && lerna exec -- npm shrinkwrap"
},
"devDependencies": {
"@commitlint/cli": "^8.2.0",
"@commitlint/config-conventional": "^8.2.0",
"@svrx/eslint-config": "^1.0.0",
"codecov": "^3.6.1",
"eslint": "^6.4.0",
"expect.js": "^0.3.1",
"husky": "^3.0.5",
"lerna": "^3.13.2",
"lerna-changelog": "^0.8.2",
"lint-staged": "^9.3.0",
"mocha": "^6.1.4",
"npm-run-all": "^4.1.5",
"nyc": "^14.1.0",
"rimraf": "^3.0.0",
"sinon": "^7.5.0",
"supertest": "^4.0.2",
"webpack": "^4.41.0",
"webpack-cli": "^3.3.9"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged",
"commit-msg": "commitlint -E HUSKY_GIT_PARAMS"
}
},
"dependencies": {
"@svrx/svrx": "file:packages/svrx",
"@svrx/util": "file:packages/svrx-util"
},
"lint-staged": {
"*.js": [
"eslint --fix",
"git add"
]
}
}