-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
60 lines (60 loc) · 1.38 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
{
"name": "react-click-outside-hook",
"version": "1.1.1",
"main": "build/index.js",
"description": "Simple to use React Hook with click outside functionality",
"author": {
"name": "Bryan Deloeste",
"email": "bryandeloeste@gmail.com"
},
"license": "MIT",
"files": [
"build/*"
],
"keywords": [
"react",
"component",
"hooks",
"clickoutside",
"onClickOutside",
"useClickOutside"
],
"repository": {
"type": "git",
"url": "https://github.com/bdeloeste/react-click-outside-hook"
},
"scripts": {
"coveralls": "cat ./coverage/lcov.info | coveralls",
"build": "neutrino build",
"start": "neutrino start",
"lint": "neutrino lint",
"test": "neutrino test",
"coverage": "neutrino test --coverage"
},
"devDependencies": {
"@neutrinojs/airbnb": "^8.3.0",
"@neutrinojs/jest": "^8.3.0",
"@neutrinojs/react-components": "^8.3.0",
"coveralls": "^3.0.3",
"enzyme": "^3.9.0",
"enzyme-adapter-react-16": "^1.12.1",
"eslint-plugin-react-hooks": "^1.6.0",
"lint-staged": "^8.1.5",
"neutrino": "^8.3.0",
"prop-types": "^15.7.2",
"react": "^16.8.6",
"react-dom": "^16.8.6"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"*.{js,jsx,css,md}": [
"neutrino lint --fix",
"neutrino test --findRelatedTests",
"git add"
]
}
}