-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
40 lines (40 loc) · 1.04 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
{
"name": "tslint-sf-react",
"version": "1.0.2",
"description": "Lint rules related to React & JSX for TSLint",
"main": "tslint-sf-react.json",
"scripts": {
"build": "tsc -p ./",
"copy": "cp -f package.json README.md tslint-sf-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.9.1",
"tslint-react-hooks": "^2.2.1"
},
"peerDependencies": {
"tslint": "^5.1.0",
"typescript": ">=2.8.0"
},
"devDependencies": {
"@types/glob": "^7.1.1",
"@types/node": "^11.11.3",
"colors": "^1.3.3",
"glob": "^7.1.3",
"install": "^0.13.0",
"npm": "^6.11.3",
"npm-run-all": "^4.1.5",
"path": "^0.12.7",
"tslint": "^5.16.0",
"typescript": "^3.4.1",
"typescript-tslint-plugin": "^0.3.1"
},
"repository": {
"type": "git",
"url": "https://github.com/SFTC/tslint-sf-react.git"
},
"license": "Apache-2.0"
}