This repository has been archived by the owner on Sep 18, 2017. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 14
/
package.json
57 lines (57 loc) · 1.54 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
{
"name": "@semantic-release/commit-analyzer",
"description": "derive next semantic version from commits",
"author": "Stephan Bönnemann <[email protected]> (http://boennemann.me)",
"bugs": {
"url": "https://github.com/semantic-release/commit-analyzer/issues"
},
"config": {
"nyc": {
"exclude": [
".test",
"node_modules"
]
}
},
"dependencies": {
"conventional-changelog": "0.0.17"
},
"devDependencies": {
"babel": "^5.5.8",
"coveralls": "^2.11.2",
"mkdirp": "^0.5.1",
"nyc": "^3.0.0",
"rimraf": "^2.4.0",
"standard": "^4.2.1",
"tap": "^1.2.0"
},
"homepage": "https://github.com/semantic-release/commit-analyzer#readme",
"keywords": [
"semantic-release",
"author",
"automation",
"changelog",
"module",
"package",
"publish",
"release",
"semver",
"version"
],
"license": "MIT",
"main": "dist/index.js",
"repository": {
"type": "git",
"url": "git+https://github.com/semantic-release/commit-analyzer.git"
},
"scripts": {
"build": "rimraf dist && mkdirp dist && babel src --out-dir dist",
"build:tests": "rimraf .test && mkdirp .test && babel test --out-dir .test",
"coverage": "nyc report",
"coverage:upload": "npm run coverage -- --reporter=lcovonly && coveralls < coverage/lcov.info",
"pretest:suite": "npm run build && npm run build:tests",
"test": "npm run test:style && npm run test:suite",
"test:style": "standard",
"test:suite": "nyc tap --no-cov .test/{scenarios,specs}/*.js"
}
}