-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
38 lines (38 loc) · 981 Bytes
/
package.json
File metadata and controls
38 lines (38 loc) · 981 Bytes
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
{
"name": "@radar/tslint-config",
"version": "5.0.2",
"description": "A TSLint config with sensible rules for the 0x protocol, Airbnb, Prettier, and more.",
"author": "Ian K Smith <smithki707@gmail.com>",
"license": "MIT",
"main": "index.js",
"repository": "",
"bugs": "",
"keywords": [
"tslint",
"airbnb",
"microsoft",
"prettier",
"0x protocol"
],
"scripts": {
"release:patch": "npm version patch && npm publish",
"release:minor": "npm version minor && npm publish",
"release:major": "npm version major && npm publish"
},
"dependencies": {
"@0xproject/tslint-config": "^1.0.7",
"tslint-config-airbnb": "^5.11.0",
"tslint-config-prettier": "^1.15.0",
"tslint-plugin-prettier": "^2.0.0"
},
"peerDependencies": {
"prettier": "^1.14.0",
"tslint": "^5.14.0",
"typescript": "^3.0.3"
},
"devDependencies": {
"prettier": "~1.14.3",
"tslint": "~5.14.0",
"typescript": "~3.0.3"
}
}