-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
43 lines (43 loc) · 1.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
{
"name": "tslint-config-mailonline",
"version": "0.0.0-SEMANTICALLY-RELEASED",
"description": "TSLint config for MailOnline",
"main": "./index.js",
"repository": "git@github.com:MailOnline/tslint-config-mailonline.git",
"bugs": {
"url": "https://github.com/MailOnline/tslint-config-mailonline/issues"
},
"homepage": "https://github.com/MailOnline/tslint-config-mailonline",
"author": "MailOnline <fe@mailonline.co.uk>",
"license": "MIT",
"keywords": [
"tslint",
"config",
"mailonline"
],
"scripts": {
"lint": "tslint './*.js'",
"check-prettier-conflicts": "tslint-config-prettier-check './index.js' && tslint-config-prettier-check './react.js'",
"semantic-release": "semantic-release",
"test": "echo 'This project has no tests' && exit 0"
},
"devDependencies": {
"husky": "^1.3.1",
"semantic-release": "^15.13.3",
"tslint": "^5.16.0",
"typescript": "^3.4.3"
},
"peerDependencies": {
"tslint": "^5.16.0",
"typescript": "^3.4.3"
},
"dependencies": {
"tslint-config-prettier": "^1.18.0",
"tslint-react": "^4.0.0"
},
"husky": {
"hooks": {
"pre-commit": "npm run lint && npm run check-prettier-conflicts"
}
}
}