-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
49 lines (49 loc) · 1.04 KB
/
package.json
File metadata and controls
49 lines (49 loc) · 1.04 KB
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
{
"name": "react-hooky",
"version": "0.5.0",
"description": "React.js hooks collection all-in-one",
"main": "index.js",
"module": "index.js",
"scripts": {
"lint": "eslint --fix index.js",
"pretest": "yarn lint",
"test": "jest",
"prepublish": "yarn test"
},
"dependencies": {
"react-use": "4.1.0",
"the-platform": "0.8.0",
"use-onclickoutside": "0.1.0",
"use-substate": "0.0.2"
},
"devDependencies": {
"eslint": "^5.8.0",
"eslint-config-airbnb-base": "^13.1.0",
"eslint-plugin-import": "^2.14.0",
"husky": "^1.1.2",
"jest": "^23.6.0",
"mocha": "^5.2.0",
"rollup": "^0.66.6"
},
"peerDependencies": {
"react": "^16.7.0-alpha.0",
"react-dom": "^16.7.0-alpha.0"
},
"husky": {
"hooks": {
"pre-commit": "yarn test"
}
},
"keywords": [
"react-hooks",
"react-hook",
"react",
"hooks",
"hook",
"the-platform",
"react-use"
],
"author": "@cloudever",
"repository": "http://github.com/cloudever/react-hooky",
"license": "MIT"
}