-
Notifications
You must be signed in to change notification settings - Fork 54
/
Copy pathpackage.json
74 lines (74 loc) · 1.72 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
{
"name": "changelog",
"version": "1.4.2",
"description": "Command line tool (and Node module) that generates a changelog in color output, markdown, or json for modules in npmjs.org's registry as well as any public github.com repo.",
"keywords": [
"changelog",
"change log",
"commit messages",
"commits",
"changes",
"history",
"what's new",
"change set"
],
"preferGlobal": true,
"homepage": "http://github.com/dylang/changelog",
"author": "Dylan Greene <dylang@gmail.com>",
"repository": {
"type": "git",
"url": "https://github.com/dylang/changelog.git"
},
"bugs": {
"mail": "dylang@gmail.com",
"url": "http://github.com/dylang/changelog/issues"
},
"directories": {
"lib": "./lib",
"bin": "./bin"
},
"main": "lib/changelog",
"bin": {
"changelog": "./bin/changelog.js"
},
"dependencies": {
"chalk": "2.3.1",
"cli": "1.0.1",
"github-url-from-git": "^1.5.0",
"has-color": "0.1.7",
"lodash": "4.17.5",
"moment": "2.20.1",
"q": "1.5.1",
"request": "2.83.0",
"semver": "5.5.0",
"wordwrap": "1.0.0"
},
"engines": {
"node": ">= 0.10.0"
},
"devDependencies": {
"chai": "3.5.0",
"grunt": "1.0.2",
"grunt-contrib-jshint": "1.1.0",
"grunt-contrib-watch": "1.0.0",
"grunt-mocha-test": "0.13.3",
"grunt-notify": "0.4.5",
"grunt-readme": "0.4.5",
"grunt-templates-dylang": "1.0.12",
"load-grunt-tasks": "3.5.2",
"mocha": "5.0.1",
"np": "2.19.0",
"proxyquire": "1.8.0",
"time-grunt": "1.4.0"
},
"scripts": {
"np": "np",
"test": "grunt test"
},
"licenses": [
{
"type": "MIT",
"url": "http://github.com/dylang/changelog/raw/master/LICENSE"
}
]
}