-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
42 lines (42 loc) · 984 Bytes
/
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
{
"name": "tslint-config-ivweb",
"version": "1.0.3",
"description": "TSLint shareable config for the IVWEB TypeScript style guide.",
"main": "index.js",
"scripts": {
"precommit": "lint-staged",
"commitmsg": "validate-commit-msg",
"commit": "git-cz "
},
"lint-staged": {
"*.{ts,jsx}": [
"tslint",
"git add"
]
},
"repository": {
"type": "git",
"url": "git+https://github.com/Stevenzwzhai/tslint-config-ivweb.git"
},
"keywords": [
"ts",
"tslint"
],
"author": "Stevenzwzhai",
"license": "ISC",
"bugs": {
"url": "https://github.com/Stevenzwzhai/tslint-config-ivweb/issues"
},
"homepage": "https://github.com/Stevenzwzhai/tslint-config-ivweb#readme",
"dependencies": {
"tslint": "^5.18.0",
"tslint-react": "^4.0.0",
"typescript": "^3.5.3"
},
"devDependencies": {
"commitizen": "^4.0.3",
"husky": "^3.0.1",
"lint-staged": "^9.2.1",
"validate-commit-msg": "^2.14.0"
}
}