-
Notifications
You must be signed in to change notification settings - Fork 12
/
package.json
92 lines (92 loc) · 3.23 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
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
{
"name": "conventional-changelog-angular-bitbucket",
"version": "0.0.0-development",
"description": "conventional-changelog Angular preset for BitBucket",
"keywords": [
"angular",
"bitbucket",
"changelog",
"conventional-changelog",
"preset"
],
"homepage": "https://github.com/uglow/conventional-changelog-angular-bitbucket#readme",
"bugs": {
"url": "https://github.com/uglow/conventional-changelog-angular-bitbucket/issues"
},
"license": "MIT",
"author": "Brett Uglow <[email protected]> (http://uglow.github.io/)",
"files": [
"src"
],
"main": "src/index.js",
"repository": {
"type": "git",
"url": "https://github.com/uglow/conventional-changelog-angular-bitbucket.git"
},
"scripts": {
"pre-release": "npm-run-all verify test:coverage",
"commitmsg": "cz-customizable-ghooks",
"dev": "cross-env NODE_ENV=development npm run verify:watch",
"prepush": "npm-run-all verify test:coverage --silent",
"semantic-release": "semantic-release",
"start": "npm run dev",
"test": "npm run test:unit",
"test:check-coverage": "nyc check-coverage",
"test:coverage": "npm-run-all test:unit:once test:check-coverage --silent",
"test:unit": "cross-env NODE_ENV=test nyc mocha --opts config/testUnit/mocha.opts -w",
"test:unit:once": "cross-env NODE_ENV=test nyc mocha --opts config/testUnit/mocha.opts",
"upload-coverage": "cat reports/coverage/lcov.info | coveralls",
"verify": "npm run verify:js --silent",
"verify:js": "eslint -c config/verify/.eslintrc.js \"src/**/*.js\" \"test/**/*.js\" \"config/**/*.js\" && echo ✅ verify:js success",
"verify:js:fix": "eslint --fix -c config/verify/.eslintrc.js \"src/**/*.js\" \"test/**/*.js\" \"config/**/*.js\" && echo ✅ verify:js:fix success",
"verify:js:watch": "chokidar 'src/**/*.js' 'test/**/*.js' 'config/**/*.js' -c 'npm run verify:js:fix' --initial --silent",
"verify:watch": "npm run verify:js:watch --silent",
"travis-deploy-once": "travis-deploy-once"
},
"config": {
"commitizen": {
"path": "node_modules/cz-customizable"
},
"cz-customizable": {
"config": "config/release/commitMessageConfig.js"
},
"ghooks": {
"pre-push": "npm-run-all verify test:coverage --silent",
"commit-msg": "node ./node_modules/cz-customizable-ghooks/lib/index.js $2"
}
},
"dependencies": {
"compare-func": "1.3.1",
"conventional-changelog-angular": "5.0.6",
"q": "1.4.1"
},
"devDependencies": {
"better-than-before": "1.0.0",
"chai": "3.4.1",
"chokidar-cli": "1.2.1",
"conventional-changelog-core": "3.1.0",
"coveralls": "2.13.1",
"cross-env": "3.1.4",
"cz-customizable": "5.2.0",
"cz-customizable-ghooks": "1.5.0",
"eslint": "4.18.2",
"eslint-config-google": "0.9.1",
"eslint-friendly-formatter": "3.0.0",
"eslint-plugin-node": "5.1.1",
"git-dummy-commit": "1.3.0",
"husky": "0.13.3",
"mocha": "5.2.0",
"mocha-junit-reporter": "1.13.0",
"mocha-multi-reporters": "1.1.5",
"npm-run-all": "4.0.2",
"nyc": "11.1.0",
"rimraf": "2.6.1",
"semantic-release": "15.11.0",
"shelljs": "0.7.3",
"through2": "2.0.0",
"travis-deploy-once": "5.0.9"
},
"engines": {
"node": ">=4.x"
}
}