forked from product-os/versionist
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
44 lines (44 loc) · 1.13 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
{
"name": "versionist",
"version": "2.8.1",
"main": "bin/versionist.js",
"description": "Flexible CHANGELOG generation toolkit that adapts to your commit conventions",
"homepage": "https://github.com/resin-io/versionist",
"repository": {
"type": "git",
"url": "[email protected]:resin-io/versionist.git"
},
"preferGlobal": true,
"bin": {
"versionist": "./bin/cli.js"
},
"scripts": {
"test": "npm run lint && mocha tests -R spec && node tests/cli/run",
"lint": "eslint lib/ tests/ bin/",
"versionist": "./bin/cli.js"
},
"author": "Juan Cruz Viotti <[email protected]>",
"license": "Apache-2.0",
"devDependencies": {
"eslint": "^3.0.0",
"indent-string": "^3.0.0",
"mocha": "^2.5.3",
"mochainon": "^1.0.0",
"shelljs": "^0.7.3",
"tmp": "0.0.28"
},
"dependencies": {
"async": "^2.0.0-rc.6",
"chalk": "^1.1.3",
"debug": "2.5.1",
"handlebars": "^4.0.5",
"handlebars-helpers": "^0.6.1",
"js-yaml": "^3.6.1",
"lodash": "^4.13.1",
"markdown": "^0.5.0",
"semver": "^5.2.0",
"touch": "^1.0.0",
"update-json": "^1.0.0",
"yargs": "^4.7.1"
}
}