-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
41 lines (41 loc) · 900 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
39
40
41
{
"name": "semantic-changelog",
"version": "1.0.1",
"description": "Create or update your `CHANGELOG.md` with a single command.",
"main": "lib/cli.js",
"types": "lib/cli.d.ts",
"repository": "https://github.com/ibrahimbutt/changelog.git",
"author": "Ibrahim Butt <[email protected]>",
"license": "MIT",
"private": false,
"files": [
"lib/**/*"
],
"scripts": {
"build": "tsc",
"test": "jest",
"test:coverage": "jest --coverage",
"prepublishOnly": "tsc"
},
"jest": {
"transform": {
"^.+\\.tsx?$": "ts-jest"
},
"globals": {
"ts-jest": {
"diagnostics": false
}
}
},
"devDependencies": {
"@types/jest": "^24.0.15",
"@types/node": "^12.0.8",
"jest": "^24.8.0",
"ts-jest": "^24.0.2",
"ts-node": "^8.3.0",
"typescript": "^3.5.2"
},
"bin": {
"changelog": "./lib/cli.js"
}
}