forked from macklinu/danger-plugin-jira-issue
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
74 lines (74 loc) · 1.79 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
{
"name": "danger-plugin-jira-issue",
"version": "0.0.0-development",
"description": "Danger plugin to link JIRA issue in pull request",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"files": [
"dist"
],
"scripts": {
"precommit": "lint-staged",
"commitmsg": "validate-commit-msg",
"build": "tsc -p tsconfig.json",
"lint": "tslint 'src/**/*.ts'",
"test": "jest --env=node",
"prepublishOnly": "npm run build",
"semantic-release": "semantic-release",
"travis-deploy-once": "travis-deploy-once"
},
"repository": {
"type": "git",
"url": "https://github.com/macklinu/danger-plugin-jira-issue.git"
},
"keywords": [
"danger",
"danger-plugin",
"jira"
],
"author": "Macklin Underdown <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/macklinu/danger-plugin-jira-issue/issues"
},
"homepage": "https://github.com/macklinu/danger-plugin-jira-issue#readme",
"engines": {
"node": ">= 4.0.0"
},
"devDependencies": {
"@types/jest": "^21.1.4",
"@types/node": "^8.0.6",
"husky": "^0.14.1",
"jest": "^21.2.1",
"lint-staged": "^4.0.0",
"prettier": "^1.14.3",
"semantic-release": "^15.9.17",
"travis-deploy-once": "^5.0.9",
"ts-jest": "^21.1.3",
"tslint": "^5.11.0",
"tslint-config-macklinu": "^1.0.0",
"typescript": "^3.1.1",
"validate-commit-msg": "^2.12.1"
},
"jest": {
"transform": {
".(ts|tsx)": "<rootDir>/node_modules/ts-jest/preprocessor.js"
},
"testRegex": "(/__tests__/.*|\\.(test|spec))\\.(ts|tsx|js)$",
"moduleFileExtensions": [
"ts",
"tsx",
"js"
]
},
"lint-staged": {
"*.ts": [
"tslint --fix",
"git add"
],
"*.json": [
"prettier --write",
"git add"
]
}
}