-
Notifications
You must be signed in to change notification settings - Fork 5
/
package.json
66 lines (66 loc) · 1.77 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
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
{
"name": "eslint-plugin-hooks",
"version": "0.4.3",
"description": "A simple organizer for ordering hooks.",
"main": "dist/index.js",
"repository": {
"type": "git",
"url": "git+https://github.com/hiukky/eslint-plugin-hooks.git"
},
"bugs": {
"url": "https://github.com/hiukky/eslint-plugin-hooks/issues"
},
"author": {
"name": "Romullo @hiukky",
"email": "[email protected]",
"url": "https://hiukky.com/"
},
"scripts": {
"prepare": "husky install",
"clean": "rimraf dist typings",
"prebuild": "yarn clean",
"test": "env TS_NODE_COMPILER_OPTIONS='{\"module\": \"commonjs\" }' mocha -r tsconfig-paths/register -r ts-node/register 'lib/**/*.spec.ts' --recursive",
"build": "tsc -d -p tsconfig.build.json",
"format": "prettier --write \"**/*.ts\"",
"prepublishOnly": "pinst --disable",
"postpublish": "pinst --enable"
},
"dependencies": {
"requireindex": "~1.2.0"
},
"devDependencies": {
"@commitlint/cli": "^16.1.0",
"@commitlint/config-conventional": "^16.0.0",
"@types/chai": "^4.3.0",
"@types/eslint": "^8.4.1",
"@types/mocha": "^9.1.0",
"@types/node": "^17.0.17",
"@types/react": "^17.0.39",
"@types/requireindex": "^1.2.0",
"@typescript-eslint/eslint-plugin": "^5.11.0",
"eslint": "^8.9.0",
"eslint-config-airbnb-base": "^15.0.0",
"husky": "^7.0.4",
"mocha": "^9.2.0",
"pinst": "^2.1.6",
"prettier": "^2.5.1",
"react": "^17.0.2",
"rimraf": "^3.0.2",
"ts-node": "^10.5.0",
"tsconfig-paths": "^3.12.0",
"typescript": "^4.5.5"
},
"engines": {
"node": ">=0.10.0"
},
"license": "MIT",
"keywords": [
"eslint",
"eslintplugin",
"eslint-plugin",
"hooks",
"react",
"react-hooks",
"sort-hooks"
]
}