-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
38 lines (38 loc) · 941 Bytes
/
package.json
File metadata and controls
38 lines (38 loc) · 941 Bytes
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": "javascripttest",
"version": "1.0.0",
"main": "index.js",
"author": "kaiorr <kaio.rocharibeiro@gmail.com>",
"license": "MIT",
"scripts": {
"commit": "npx cz",
"test": "jest",
"test:watch": "jest --watchAll"
},
"husky": {
"hooks": {
"commit-msg": "commitlint -E HUSKY_GIT_PARAMS",
"prepare-commit-msg": "exec < /dev/tty && git cz --hook || true"
}
},
"devDependencies": {
"@babel/core": "^7.12.7",
"@babel/preset-env": "^7.12.7",
"@commitlint/cli": "^11.0.0",
"@commitlint/config-angular": "^11.0.0",
"@types/jest": "^26.0.15",
"babel-jest": "^26.6.3",
"commitizen": "^4.2.2",
"cz-conventional-changelog": "^3.3.0",
"dinero.js": "^1.8.1",
"husky": "^4.3.0",
"jest": "^26.6.3",
"lodash": "^4.17.20",
"prettier": "^2.2.0"
},
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
}
}