-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
38 lines (38 loc) · 1.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
{
"name": "nuxt-parallel-middleware",
"version": "0.0.2",
"main": "lib/index.js",
"repository": "git@github.com:prashantpalikhe/nuxt-parallel-middleware.git",
"author": "Prashant Palikhe <prashpal09@gmail.com>",
"license": "MIT",
"scripts": {
"commit": "git-cz",
"lint": "eslint lib",
"release": "standard-version"
},
"devDependencies": {
"babel-eslint": "^10.0.3",
"cz-conventional-changelog": "3.0.2",
"eslint": "^6.6.0",
"eslint-config-prettier": "^6.5.0",
"eslint-config-standard": "^14.1.0",
"eslint-plugin-import": "^2.18.2",
"eslint-plugin-node": "^10.0.0",
"eslint-plugin-prettier": "^3.1.1",
"eslint-plugin-promise": "^4.2.1",
"eslint-plugin-standard": "^4.0.1",
"husky": "^3.0.9",
"prettier": "^1.18.2",
"standard-version": "^7.0.0"
},
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
},
"husky": {
"hooks": {
"prepare-commit-msg": "exec < /dev/tty && git cz --hook || true"
}
}
}