-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
58 lines (58 loc) · 1.41 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
{
"name": "ch-log",
"version": "1.1.0",
"description": "Generate changelog from GitHub releases.",
"bin": {
"changelog": "./dist/changelog.js",
"ch-log": "./dist/changelog.js"
},
"preferGlobal": true,
"files": [
"dist"
],
"scripts": {
"prepublishOnly": "npm run build",
"build": "tsc -p .",
"watch": "tsc -p . -w",
"lint": "tslint -p .",
"pretest": "npm run build",
"test": "mocha --require ts-node/register test/**/*.test.ts"
},
"repository": {
"type": "git",
"url": "git+https://github.com/gluons/changelog.git"
},
"keywords": [
"changelog",
"github",
"release",
"releases"
],
"author": "Saran Tanpituckpong <[email protected]>",
"license": "Apache-2.0",
"bugs": {
"url": "https://github.com/gluons/changelog/issues"
},
"homepage": "https://github.com/gluons/changelog",
"dependencies": {
"chalk": "^2.3.2",
"gh-got": "^7.0.0",
"git-remote-origin-url": "^2.0.0",
"ora": "^2.0.0",
"parse-github-repo-url": "^1.4.0",
"update-notifier": "^2.1.0",
"yargs": "^11.0.0"
},
"devDependencies": {
"@types/git-remote-origin-url": "^2.0.0",
"@types/mocha": "^2.2.48",
"@types/node": "^9.4.7",
"@types/update-notifier": "^2.2.0",
"@types/yargs": "^11.0.0",
"mocha": "^5.0.4",
"ts-node": "^5.0.1",
"tslint": "^5.2.0",
"tslint-config-gluons": "^1.0.4",
"typescript": "^2.3.2"
}
}