forked from palantir/tslint-react
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
38 lines (38 loc) · 1 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
{
"name": "tslint-react",
"version": "3.5.1",
"description": "Lint rules related to React & JSX for TSLint",
"main": "tslint-react.json",
"scripts": {
"build": "tsc -p ./",
"copy": "cp -f package.json README.md tslint-react.json build/",
"clean": "rm -rf build/",
"lint": "tslint --project tsconfig.json --format codeFrame",
"test": "./scripts/test-rules",
"verify": "run-s build lint test"
},
"dependencies": {
"tsutils": "^2.13.1"
},
"peerDependencies": {
"tslint": "^5.1.0",
"typescript": ">=2.1.0 || >=2.7.0-dev || >=2.8.0-dev"
},
"devDependencies": {
"@types/colors": "^1.1.3",
"@types/glob": "^5.0.30",
"@types/node": "^7.0.13",
"colors": "^1.1.2",
"glob": "^7.1.2",
"npm-run-all": "^4.0.2",
"path": "^0.12.7",
"tslint": "^5.5.0",
"tslint-language-service": "^0.9.6",
"typescript": "~2.6.2"
},
"repository": {
"type": "git",
"url": "https://github.com/palantir/tslint-react.git"
},
"license": "Apache-2.0"
}