-
-
Notifications
You must be signed in to change notification settings - Fork 19
/
package.json
52 lines (52 loc) · 1.01 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
{
"name": "changelog.md",
"version": "1.1.0",
"description": "Manage CHANGELOG.md so easy it hurts.",
"repository": {
"url": "EGOIST/changelog.md",
"type": "git"
},
"main": "lib/index.js",
"files": [
"bin",
"lib"
],
"engines": {
"node": ">= 7"
},
"bin": {
"changelog": "bin/changelog"
},
"scripts": {
"test": "ava && npm run lint",
"lint": "xo lib/*.js bin/*"
},
"author": "EGOIST <[email protected]>",
"license": "MIT",
"devDependencies": {
"ava": "^0.17.0",
"xo": "^0.17.1"
},
"xo": {
"space": 2,
"semicolon": false,
"esnext": true,
"rules": {
"guard-for-in": 0
}
},
"dependencies": {
"cac": "^3.0.4",
"chalk": "^1.1.3",
"co": "^4.6.0",
"commits-between": "^0.2.0",
"ensure-git": "^0.1.0",
"git-remote-origin-url": "^2.0.0",
"git-semver-tags": "^1.1.2",
"git-url-parse": "^6.1.1",
"inquirer": "^2.0.0",
"mz": "^2.6.0",
"semver": "^5.3.0",
"update-notifier": "^1.0.3"
}
}