This repository has been archived by the owner on Jan 6, 2021. It is now read-only.
forked from leoforfree/cz-customizable
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
68 lines (68 loc) · 2.19 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
65
66
67
68
{
"version": "0.0.0-development",
"name": "cz-customizable",
"description": "Commitizen customizable adapter following the conventional-changelog format.",
"main": "index.js",
"types": "index.d.ts",
"bin": {
"cz-customizable": "./standalone.js"
},
"scripts": {
"lint": "node_modules/eslint/bin/eslint.js *.js spec/**.js",
"test": "node_modules/jasmine-node/bin/jasmine-node spec/",
"test:coverage": "istanbul cover -x cz-config-EXAMPLE.js node_modules/jasmine-node/bin/jasmine-node spec/",
"test:check-coverage": "istanbul check-coverage --statements 100 --branches 100 --functions 100 --lines 100",
"test:watch": "node_modules/jasmine-node/bin/jasmine-node --color --autotest spec/ --watch .",
"report-coverage": "cat ./coverage/lcov.info | codecov",
"semantic-release": "semantic-release",
"prettier": "prettier --single-quote --trailing-comma es5 --write '*.js' 'spec/**/*.js'",
"commit": "./standalone.js",
"travis-deploy-once": "travis-deploy-once"
},
"homepage": "https://github.com/leoforfree/cz-customizable",
"repository": {
"type": "git",
"url": "https://github.com/leoforfree/cz-customizable.git"
},
"author": "Leonardo Correa <[email protected]>",
"contributors": [
"Aleksey Guryanov <[email protected]>"
],
"license": "MIT",
"dependencies": {
"editor": "1.0.0",
"find-config": "^1.0.0",
"inquirer": "^6.3.1",
"lodash": "^4.17.19",
"temp": "^0.9.0",
"word-wrap": "^1.2.3"
},
"devDependencies": {
"codecov.io": "0.1.6",
"commitizen": "^3.1.1",
"eslint": "^5.16.0",
"eslint-config-airbnb-base": "^13.1.0",
"eslint-config-prettier": "^4.2.0",
"eslint-plugin-import": "^2.22.0",
"eslint-plugin-nada": "^1.1.1",
"eslint-plugin-prettier": "^3.1.4",
"ghooks": "^2.0.4",
"istanbul": "^0.4.5",
"jasmine-node": "^1.16.2",
"prettier": "^1.17.1",
"rewire": "^4.0.1",
"semantic-release": "^15.13.12",
"travis-deploy-once": "^5.0.11"
},
"config": {
"commitizen": {
"path": "./index.js"
},
"cz-customizable": {
"config": "cz-config-EXAMPLE.js"
},
"ghooks": {
"pre-commit": "npm run lint && npm run test"
}
}
}