-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
95 lines (95 loc) · 2.23 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
90
91
92
93
94
95
{
"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",
"prepublishOnly": "rimraf dist/ && npm run build",
"test": "npm run prettier:check && npm run lint && npm run test:unit",
"test:unit": "jest",
"prepublish": "npm run build",
"prettier:fix": "prettier --write . --ignore-path .gitignore",
"prettier:check": "prettier --check . --ignore-path .gitignore",
"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.3.5",
"@commitlint/config-conventional": "8.3.0",
"@types/jest": "^25.2.1",
"commitizen": "^4.0.4",
"cz-conventional-changelog": "^3.1.0",
"danger": "*",
"husky": "^4.2.5",
"jest": "^25.3.0",
"lint-staged": "^10.2.7",
"prettier": "^2.0.4",
"rimraf": "^3.0.2",
"ts-jest": "^25.4.0",
"ts-mockery": "^1.2.0",
"tslint": "^6.1.1",
"tslint-config-prettier": "^1.18.0",
"typescript": "^3.6.4"
},
"config": {
"commitizen": {
"path": "cz-conventional-changelog"
}
},
"lint-staged": {
"*{ts,tsx}": [
"tslint --fix",
"prettier --write"
],
"*{js,json,md}": [
"prettier --write"
]
},
"jest": {
"moduleFileExtensions": [
"ts",
"tsx",
"js"
],
"transform": {
".(ts|tsx)": "ts-jest"
},
"testRegex": "(.test)\\.(ts|tsx)$",
"testPathIgnorePatterns": [
"\\.snap$",
"<rootDir>/node_modules/"
]
}
}