-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
64 lines (64 loc) · 1.74 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
{
"name": "@bigab/use-related-state",
"version": "0.0.1",
"publishConfig": {
"access": "public"
},
"description": "A React Hook for relating UI state to a list of entities",
"main": "dist/use-related-state.cjs.js",
"module": "dist/use-related-state.esm.js",
"browser": "dist/use-related-state.umd.js",
"scripts": {
"prepublishOnly": "npm run build",
"start": "run-p build:watch test:watch",
"build": "rollup -c",
"build:watch": "rollup -c -w",
"test": "jest test/test.js --coverage",
"test:watch": "jest test/test.js --watch",
"pretest": "npm run build",
"debug": "node --inspect-brk --inspect ./node_modules/.bin/jest -i"
},
"repository": {
"type": "git",
"url": "git+https://github.com/BigAB/use-related-state.git"
},
"author": "BigAB <[email protected]> (http://bigab.net)",
"license": "MIT",
"bugs": {
"url": "https://github.com/BigAB/use-related-state/issues"
},
"homepage": "https://github.com/BigAB/use-related-state#readme",
"peerDependencies": {
"react": "^16.8.6"
},
"devDependencies": {
"eslint": "^5.15.3",
"eslint-config-prettier": "^4.1.0",
"eslint-plugin-prettier": "^3.0.1",
"eslint-plugin-react": "^7.12.4",
"husky": "^1.3.1",
"jest": "^24.5.0",
"npm-run-all": "^4.1.5",
"prettier": "^1.16.4",
"pretty-quick": "^1.10.0",
"react": "^16.8.6",
"react-dom": "^16.8.6",
"react-hooks-testing-library": "^0.3.8",
"rollup": "^1.7.4",
"rollup-plugin-commonjs": "^9.2.2",
"rollup-plugin-node-resolve": "^4.0.1"
},
"files": [
"dist"
],
"husky": {
"hooks": {
"pre-commit": "pretty-quick --staged"
}
},
"prettier": {
"trailingComma": "es5",
"jsxSingleQuote": true,
"singleQuote": true
}
}