-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
89 lines (89 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
{
"name": "danger-plugin-tslint",
"version": "0.0.0-development",
"description": "Danger plugin for TSLint",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"files": [
"dist"
],
"scripts": {
"precommit": "lint-staged",
"prepush": "npm run test",
"commit": "git-cz",
"commitmsg": "validate-commit-msg",
"build": "tsc -p tsconfig.json",
"lint": "tslint '{dangerfile.ts,src/**/*.ts}'",
"test": "jest --env=node",
"danger": "danger",
"docs": "typedoc --theme minimal --out docs src/index.ts",
"docs:serve": "npm run docs && serve docs",
"docs:deploy": "npm run docs && node scripts/deploy-docs.js",
"prepublish": "npm run build",
"semantic-release": "semantic-release pre && npm publish && semantic-release post"
},
"repository": {
"type": "git",
"url": "https://github.com/macklinu/danger-plugin-tslint.git"
},
"keywords": [
"danger",
"danger-plugin",
"tslint"
],
"author": "Macklin Underdown <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/macklinu/danger-plugin-tslint/issues"
},
"homepage": "https://github.com/macklinu/danger-plugin-tslint#readme",
"devDependencies": {
"@types/common-tags": "^1.2.5",
"@types/jest": "^21.1.2",
"@types/node": "^8.0.6",
"commitizen": "^2.9.6",
"cz-conventional-changelog": "^2.0.0",
"danger": "^1.0.0",
"gh-pages": "^1.0.0",
"husky": "^0.14.1",
"jest": "^21.2.1",
"lint-staged": "^4.0.0",
"semantic-release": "^6.3.6",
"ts-jest": "^21.1.2",
"tslint": "^5.0.0",
"typedoc": "^0.7.1",
"typedoc-plugin-external-module-name": "^1.0.9",
"typescript": "^2.4.1",
"validate-commit-msg": "^2.12.1"
},
"peerDependencies": {
"tslint": "^5.0.0"
},
"optionalDependencies": {
"serve": "^6.0.0"
},
"jest": {
"testRegex": ".*\\.test\\.ts$",
"transform": {
".(ts|tsx)": "<rootDir>/node_modules/ts-jest/preprocessor.js"
},
"moduleFileExtensions": [
"ts",
"js"
]
},
"config": {
"commitizen": {
"path": "cz-conventional-changelog"
}
},
"lint-staged": {
"*.ts": [
"tslint --fix",
"git add"
]
},
"dependencies": {
"common-tags": "^1.4.0"
}
}