-
Notifications
You must be signed in to change notification settings - Fork 6
/
package.json
67 lines (67 loc) · 1.71 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
67
{
"name": "react-hooks-compose",
"version": "2.0.20",
"description": "Compose React Hooks",
"main": "dist/main.js",
"scripts": {
"test": "jest --coverage",
"release": "npx github:helloitsjoe/release-toolkit release",
"lint": "eslint ./src",
"coveralls": "cat ./coverage/lcov.info | coveralls",
"watch": "webpack --watch",
"build": "webpack",
"prepublishOnly": "rm -rf dist && yarn build && yarn test --silent"
},
"repository": {
"type": "git",
"url": "git+https://github.com/helloitsjoe/react-hooks-compose.git"
},
"keywords": [
"react",
"hooks",
"compose",
"composition",
"testing"
],
"author": "Joe Boyle",
"license": "MIT",
"bugs": {
"url": "https://github.com/helloitsjoe/react-hooks-compose/issues"
},
"files": [
"/dist",
"README.md"
],
"husky": {
"hooks": {
"pre-push": "npm t -- --silent"
}
},
"homepage": "https://github.com/helloitsjoe/react-hooks-compose#readme",
"peerDependencies": {
"react": "^16.8 || ^17 || ^18"
},
"devDependencies": {
"@babel/core": "^7.11.6",
"@testing-library/react": "^13.4.0",
"babel-eslint": "^10.0.3",
"babel-loader": "^8.0.6",
"babel-react-simple": "^1.0.2",
"coveralls": "^3.0.9",
"eslint": "^6.8.0",
"eslint-config-helloitsjoe": "^1.2.2",
"eslint-plugin-import": "^2.19.1",
"eslint-plugin-jsx-a11y": "^6.2.3",
"eslint-plugin-react": "^7.17.0",
"eslint-plugin-react-hooks": "^4.2.0",
"husky": "^3.1.0",
"jest": "^29.0.2",
"jest-environment-jsdom": "^29.0.2",
"prettier": "^1.19.1",
"react": "^18",
"react-dom": "^18",
"webpack": "^4.41.4",
"webpack-cli": "^3.3.10",
"webpack-simple": "^1.5.2"
}
}