forked from BearAlliance/danger-plugin-rally
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
89 lines (89 loc) · 2 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
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
{
"name": "danger-plugin-rally",
"description": "Tools for linking rally stories to pull requests",
"author": {
"name": "Nick Cacace",
"email": "NickCacace@gmail.com"
},
"repository": {
"type": "git",
"url": "https://github.com/bearalliance/danger-plugin-rally.git"
},
"bugs": {
"url": "https://github.com/bearalliance/danger-plugin-rally/issues"
},
"homepage": "https://github.com/bearalliance/danger-plugin-rally#readme",
"keywords": [
"danger",
"danger-plugin",
"rally"
],
"version": "0.0.0-development",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"scripts": {
"commit": "git-cz",
"build": "tsc",
"test": "jest",
"prepublish": "npm run build",
"prettier-project": "prettier --write 'src/**/*.{ts,tsx}'",
"lint": "tslint \"src/**/*.ts\""
},
"husky": {
"hooks": {
"pre-commit": "lint-staged",
"commit-msg": "commitlint -E HUSKY_GIT_PARAMS"
}
},
"license": "MIT",
"engines": {
"node": ">=4.0.0"
},
"files": [
"./dist"
],
"devDependencies": {
"@commitlint/cli": "^8.2.0",
"@commitlint/config-conventional": "^8.2.0",
"@types/jest": "^24.0.21",
"commitizen": "^4.0.3",
"cz-conventional-changelog": "^3.0.2",
"danger": "*",
"husky": "^3.0.9",
"jest": "^24.9.0",
"lint-staged": "^9.4.2",
"prettier": "^1.18.2",
"ts-jest": "^24.1.0",
"tslint": "^5.20.0",
"tslint-config-prettier": "^1.18.0",
"typescript": "^3.6.4"
},
"config": {
"commitizen": {
"path": "cz-conventional-changelog"
}
},
"lint-staged": {
"*.@(ts|tsx)": [
"tslint --fix",
"prettier --write",
"git add"
]
},
"jest": {
"moduleFileExtensions": [
"ts",
"tsx",
"js"
],
"transform": {
".(ts|tsx)": "<rootDir>/node_modules/ts-jest/preprocessor.js"
},
"testRegex": "(.test)\\.(ts|tsx)$",
"testPathIgnorePatterns": [
"\\.snap$",
"<rootDir>/node_modules/"
]
},
"dependencies": {}
}