-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
38 lines (38 loc) · 889 Bytes
/
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
{
"name": "changelog-reminder",
"version": "0.5.4",
"bin": "./cli.js",
"author": "dcalsky",
"license": "Apache-2.0",
"keywords": [
"changelog",
"reminder"
],
"scripts": {
"build": "NODE_ENV=production node fuse.js",
"prepublish": "yarn build",
"dev": "tsc -w",
"test": "mocha -r ts-node/register ./test/*.test.ts"
},
"dependencies": {
"chalk": "^2.3.0",
"cheerio": "^1.0.0-rc.2",
"cli-table-redemption": "^1.0.1",
"marked": "^0.3.7",
"yargs": "^11.0.0"
},
"devDependencies": {
"@types/chai": "^4.0.10",
"@types/chalk": "^2.2.0",
"@types/cheerio": "^0.22.6",
"@types/marked": "^0.3.0",
"@types/mocha": "^2.2.44",
"@types/node": "^8.5.1",
"@types/yargs": "^10.0.1",
"chai": "^4.1.2",
"fuse-box": "^3.0.2",
"mocha": "^4.0.1",
"ts-node": "^4.0.2",
"typescript": "^2.6.2"
}
}