UNPKG

1.03 kBJSONView Raw
1{
2 "name": "tslint-react-hooks",
3 "version": "2.0.0",
4 "description": "TSLint rule that enforces the Rules of Hooks",
5 "main": "tslint-react-hooks.json",
6 "scripts": {
7 "prebuild": "rm -rf dist",
8 "build": "tsc",
9 "prepublishOnly": "npm run build",
10 "pretest": "npm run build",
11 "test": "npm run test:only",
12 "test:only": "npm run test:only:lint",
13 "test:only:lint": "tslint --test test/**/tslint.json"
14 },
15 "keywords": [
16 "tslint",
17 "react",
18 "react-hooks",
19 "rules of hooks",
20 "react hooks",
21 "tslint plugin"
22 ],
23 "author": "Grzegorz Rozdzialik <voreny.gelio@gmail.com>",
24 "license": "MIT",
25 "devDependencies": {
26 "@types/node": "^10.12.21",
27 "tslint": "^5.12.1",
28 "typescript": "^3.3.1"
29 },
30 "homepage": "https://github.com/Gelio/tslint-react-hooks",
31 "repository": {
32 "type": "git",
33 "url": "https://github.com/Gelio/tslint-react-hooks"
34 },
35 "peerDependencies": {
36 "tslint": "^5.1.0",
37 "typescript": ">=2.1.0"
38 }
39}