-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
46 lines (46 loc) · 1.37 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
{
"name": "git-changelog",
"version": "1.1.2",
"description": "Smoothly create changelogs from commits",
"main": "index.js",
"scripts": {
"test": "nyc mocha \"./test/**/*.spec.js\"",
"installx86": "dpkg --add-architecture i386 && apt-get -y update && apt-get install -y libc6:i386 libstdc++6:i386",
"lint": "./node_modules/.bin/eslint --fix ./lib",
"build": "rm -rf ./dist && pkg --o ./dist/git-changelog --targets node10-linux-x64,node10-linux-x86,node10-win-x64,node10-win-x86,node10-macos-x64 --config ./package.json ./index.js && gzip -k -v ./dist/* && for file in `find ./dist -not -name \"*t.gz\"`; do zip ${file%.*}.zip $file; done "
},
"pkg": {
"assets": [
"templates/**/*"
]
},
"repository": {
"type": "git",
"url": "git+https://github.com/vflopes/git-changelog.git"
},
"keywords": [
"git",
"commit",
"changelog",
"trigger"
],
"author": "Victor França Lopes",
"license": "MIT",
"bugs": {
"url": "https://github.com/vflopes/git-changelog/issues"
},
"homepage": "https://github.com/vflopes/git-changelog#readme",
"dependencies": {
"chalk": "^2.4.2",
"dot": "^1.1.2",
"inquirer": "^6.2.2"
},
"devDependencies": {
"chai": "^4.2.0",
"eslint": "^5.15.3",
"eslint-config-airbnb": "^17.1.0",
"eslint-plugin-import": "^2.16.0",
"mocha": "^6.0.2",
"nyc": "^13.3.0"
}
}