-
Notifications
You must be signed in to change notification settings - Fork 76
/
package.json
37 lines (37 loc) · 976 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
{
"name": "tslint-react",
"version": "5.0.0",
"description": "Lint rules related to React & JSX for TSLint",
"main": "tslint-react.json",
"scripts": {
"build": "tsc -p ./",
"copy": "cp -f package.json README.md LICENSE 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": "^3.17.1"
},
"peerDependencies": {
"tslint": "^6.0.0",
"typescript": ">=3.4.1"
},
"devDependencies": {
"@types/glob": "^7.1.1",
"@types/node": "^11.11.3",
"colors": "^1.4.0",
"glob": "^7.1.6",
"npm-run-all": "^4.1.5",
"path": "^0.12.7",
"tslint": "^6.1.1",
"typescript-tslint-plugin": "^0.5.5",
"typescript": "~3.8.3"
},
"repository": {
"type": "git",
"url": "https://github.com/palantir/tslint-react.git"
},
"license": "Apache-2.0"
}