-
Notifications
You must be signed in to change notification settings - Fork 9
/
package.json
48 lines (48 loc) · 1.14 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
{
"name": "cracks",
"description": "breaking change detection",
"main": "index.js",
"bin": "./bin/cracks",
"scripts": {
"prebuild": "rimraf dist && mkdirp dist",
"build": "babel lib --out-dir dist",
"test": "standard",
"prepublish": "npm run build",
"semantic-release": "semantic-release pre && npm publish && semantic-release post"
},
"repository": {
"type": "git",
"url": "https://github.com/semantic-release/cracks.git"
},
"keywords": [
"breaking",
"change",
"detection",
"semver",
"semantic-release",
"package"
],
"author": "Christoph Witzko <[email protected]> (http://christophwitzko.com/)",
"license": "MIT",
"bugs": {
"url": "https://github.com/semantic-release/cracks/issues"
},
"homepage": "https://github.com/semantic-release/cracks#readme",
"devDependencies": {
"babel": "^5.2.17",
"mkdirp": "^0.5.1",
"rimraf": "^2.4.2",
"semantic-release": "^4.0.0",
"standard": "^4.2.1"
},
"standard": {
"ignore": [
"dist/**"
]
},
"dependencies": {
"git-refs": "^1.1.2",
"lodash": "^3.8.0",
"minimist": "^1.1.1"
}
}