-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
44 lines (44 loc) · 1.08 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": "commit-with-ticket",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"build": "tsc",
"test": "jest --config jestconfig.json",
"lint": "tslint -p tsconfig.json",
"prepare": "npm run build",
"prepublishOnly": "npm test && npm run lint",
"preversion": "npm run lint"
},
"repository": {
"type": "git",
"url": "git+https://github.com/justindarner/commit-with-ticket.git"
},
"keywords": [],
"author": "Justin Darner",
"license": "MIT",
"bugs": {
"url": "https://github.com/justindarner/commit-with-ticket/issues"
},
"homepage": "https://github.com/justindarner/commit-with-ticket#readme",
"devDependencies": {
"@types/git-branch": "^2.0.1",
"@types/jest": "^24.0.18",
"@types/node": "^12.7.2",
"jest": "^24.9.0",
"prettier": "^1.18.2",
"ts-jest": "^24.0.2",
"tslint": "^5.19.0",
"tslint-config-prettier": "^1.18.0",
"typescript": "^3.5.3"
},
"files": [
"lib /**/*"
],
"dependencies": {
"colors": "^1.3.3",
"git-branch": "^2.0.1",
"rxjs": "^6.5.2"
}
}