forked from whizark/commitlint-config-cz
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
64 lines (64 loc) · 2.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
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
{
"name": "commitlint-config-cz",
"version": "0.13.1",
"description": "commitlint sharable configuration files",
"keywords": [
"git",
"commit",
"commitlint",
"commitlint-config",
"conventional-changelog",
"conventional-changelog-lint-config",
"lint"
],
"homepage": "https://github.com/whizark/commitlint-config-cz",
"bugs": {
"url": "https://github.com/whizark/commitlint-config-cz/issues"
},
"license": "MIT",
"author": {
"name": "Whizark",
"url": "http://whizark.com"
},
"files": [
"index.js",
"lib"
],
"main": "./index.js",
"repository": {
"type": "git",
"url": "https://github.com/whizark/commitlint-config-cz.git"
},
"scripts": {
"test:mocha": "mocha --require intelli-espower-loader --timeout 30000 --reporter spec \"./test/**/*.spec.js\"",
"test": "nyc npm run --silent test:mocha",
"coverage": "nyc report",
"watch:test:mocha": "mocha --require intelli-espower-loader --timeout 30000 --reporter spec --watch --growl \"./test/**/*.spec.js\"",
"watch:test": "npm run --silent watch:test:mocha",
"watch": "npm run --silent watch:test",
"ci:test:mocha": "npm run test:mocha",
"ci:test": "nyc npm run ci:test:mocha",
"ci:coveralls": "nyc report --reporter=text-lcov | coveralls",
"release:first": "standard-version --sign --first-release",
"release:patch": "standard-version --sign --release-as patch --commit-all",
"release:minor": "standard-version --sign --release-as minor --commit-all",
"release:major": "standard-version --sign --release-as major --commit-all",
"release": "standard-version --sign --commit-all"
},
"dependencies": {
"app-root-path": "~3.0.0",
"lodash.clonedeep": "~4.5.0"
},
"devDependencies": {
"@commitlint/cli": "9.1.2",
"coveralls": "3.1.0",
"intelli-espower-loader": "1.0.1",
"mocha": "8.2.1",
"nyc": "15.1.0",
"power-assert": "1.6.1",
"standard-version": "9.0.0"
},
"peerDependencies": {
"@commitlint/cli": "^7.0.0 || ^8.0.0 || ^9.0.0"
}
}