-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
27 lines (27 loc) · 735 Bytes
/
package.json
File metadata and controls
27 lines (27 loc) · 735 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
{
"name": "nodejs-commits-patterning-sample",
"version": "1.0.0",
"main": "index.js",
"repository": "git@github.com:gdfreitas/nodejs-commits-patterning-sample.git",
"author": "Gabriel Freitas <gdfreitasdev@gmail.com>",
"license": "MIT",
"scripts": {
"lint": "eslint *.js",
"lint:fix": "eslint --fix **/*.js",
"test": "node src/index.test.js"
},
"devDependencies": {
"@commitlint/cli": "^13.1.0",
"@commitlint/config-conventional": "^13.1.0",
"commitizen": "^4.2.4",
"cz-conventional-changelog": "3.3.0",
"eslint": "^7.32.0",
"husky": "^7.0.2",
"lint-staged": "^11.1.2"
},
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
}
}