-
Notifications
You must be signed in to change notification settings - Fork 11
/
Copy pathpackage.json
54 lines (54 loc) · 1.25 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
{
"name": "endanger",
"version": "7.0.4",
"description": "Build Dangerfiles with ease.",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"scripts": {
"build": "rm -rf dist && tsc --project ./tsconfig.build.json && prettier --ignore-path='.no' 'dist/**' --write",
"danger": "danger local -d ./dangerfile.ts -s -b master",
"prepublishOnly": "npm run -s build"
},
"keywords": [],
"files": [
"dist"
],
"author": "Jamie Kyle <[email protected]>",
"license": "MIT",
"dependencies": {
"callsites": "^3.1.0",
"execa": "^5.0.0",
"intl-messageformat": "^9.3.19",
"memoize-one": "^5.1.1",
"micromatch": "^4.0.2",
"remark-gfm": "^1.0.0",
"remark-parse": "^9.0.0",
"remark-stringify": "^9.0.1",
"strip-indent": "^3.0.0",
"unified": "^9.2.0",
"unist-util-visit": "^2.0.3",
"yaml": "^1.10.0"
},
"peerDependencies": {
"danger": "^10.5.3"
},
"devDependencies": {
"@types/micromatch": "^4.0.1",
"danger": "^10.5.3",
"husky": "^4.3.0",
"lint-staged": "^10.5.2",
"prettier": "^2.2.0",
"typescript": "^4.0.5"
},
"lint-staged": {
"*": [
"prettier --write",
"git add"
]
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
}
}