-
Notifications
You must be signed in to change notification settings - Fork 10
/
package.json
39 lines (39 loc) · 994 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
38
39
{
"name": "tslint-react-hooks",
"version": "2.2.2",
"description": "TSLint rule that enforces the Rules of Hooks",
"main": "tslint-react-hooks.json",
"scripts": {
"prebuild": "rm -rf dist",
"build": "tsc",
"prepublishOnly": "npm run build",
"pretest": "npm run build",
"test": "npm run test:only",
"test:only": "npm run test:only:lint",
"test:only:lint": "tslint --test test/**/tslint.json"
},
"keywords": [
"tslint",
"react",
"react-hooks",
"rules of hooks",
"react hooks",
"tslint plugin"
],
"author": "Grzegorz Rozdzialik <[email protected]>",
"license": "MIT",
"devDependencies": {
"@types/node": "^12.12.30",
"tslint": "^6.1.0",
"typescript": "^3.8.3"
},
"homepage": "https://github.com/Gelio/tslint-react-hooks",
"repository": {
"type": "git",
"url": "https://github.com/Gelio/tslint-react-hooks"
},
"peerDependencies": {
"tslint": "5 - 6",
"typescript": ">=2.1.0"
}
}