forked from ClearTax/pivotal-lint
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
47 lines (47 loc) · 1.09 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
{
"name": "pivotal-lint",
"version": "2.3.1",
"description": "Add pivotal story details to pull requests",
"main": "lib/index.js",
"scripts": {
"build": "ncc build src/main.ts -o lib",
"test": "jest",
"test:watch": "jest --watch",
"docs:toc": "markdown-toc -i --bullets='-' README.md"
},
"repository": {
"type": "git",
"url": "git+https://github.com/cleartax/pivotal-lint"
},
"keywords": [
"actions",
"node",
"setup"
],
"author": "cleartax",
"license": "MIT",
"husky": {
"hooks": {
"pre-push": "./scripts/pre-push.sh",
"pre-commit": "./scripts/pre-commit.sh"
}
},
"dependencies": {
"@actions/core": "^1.0.0",
"@actions/github": "^1.1.0",
"axios": "^0.19.0",
"string-similarity": "^3.0.0"
},
"devDependencies": {
"@types/jest": "^24.0.18",
"@types/node": "^12.7.5",
"@types/string-similarity": "^3.0.0",
"@zeit/ncc": "^0.20.5",
"husky": "^3.0.5",
"jest": "^24.8.0",
"jest-circus": "^24.7.1",
"markdown-toc": "^1.2.0",
"ts-jest": "^24.1.0",
"typescript": "^3.6.3"
}
}