-
-
Notifications
You must be signed in to change notification settings - Fork 27
/
package.json
94 lines (94 loc) · 2.81 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
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
{
"name": "react-hooks-lib",
"version": "0.6.0",
"main": "dist/react-hooks-lib.js",
"umd:main": "dist/react-hooks-lib.umd.js",
"module": "dist/react-hooks-lib.m.js",
"source": "src/index.js",
"license": "MIT",
"scripts": {
"build": "microbundle -o dist/ --sourcemap false --no-compress --jsx React.createElement",
"dev": "microbundle watch -o dist/ --sourcemap false --no-compress --jsx React.createElement",
"test": "jest --coverage --config=jest.config.js",
"report-coverage": "cat ./coverage/lcov.info | coveralls",
"storybook": "start-storybook -p 6006 --ci",
"build-storybook": "build-storybook",
"deploy-storybook": "storybook-to-ghpages",
"semantic-release": "semantic-release"
},
"config": {
"commitizen": {
"path": "cz-conventional-changelog"
}
},
"husky": {
"hooks": {
"pre-push": "yarn test",
"prepare-commit-msg": "exec < /dev/tty && git cz --hook || true"
}
},
"keywords": [
"react-hooks",
"hooks",
"react",
"utils"
],
"resolutions": {
"@babel/core": "^7.5.4"
},
"devDependencies": {
"@babel/core": "^7.12.10",
"@babel/node": "^7.12.10",
"@babel/plugin-proposal-object-rest-spread": "^7.5.4",
"@babel/polyfill": "^7.2.5",
"@babel/preset-env": "^7.2.3",
"@babel/preset-react": "^7.0.0",
"@semantic-release/changelog": "^3.0.4",
"@semantic-release/git": "^7.0.16",
"@storybook/addon-actions": "^5.1.9",
"@storybook/addon-links": "^5.1.9",
"@storybook/addons": "^5.1.9",
"@storybook/react": "^5.1.9",
"@storybook/storybook-deployer": "^2.8.1",
"@testing-library/dom": "^8.1.0",
"@testing-library/react": "^12.0.0",
"@testing-library/react-hooks": "^7.0.1",
"@testing-library/user-event": "^13.2.1",
"@types/jest": "^23.3.10",
"babel-core": "^7.0.0-bridge.0",
"babel-eslint": "^10.0.1",
"babel-jest": "^23.6.0",
"babel-loader": "^8.0.6",
"commitizen": "^4.0.3",
"coveralls": "^3.0.2",
"eslint": "^5.7.0",
"eslint-config-airbnb": "^17.1.0",
"eslint-plugin-import": "^2.14.0",
"eslint-plugin-jsx-a11y": "^6.1.2",
"eslint-plugin-react": "^7.11.1",
"eslint-plugin-react-hooks": "^1.6.1",
"husky": "^3.0.3",
"jest": "^23.6.0",
"jest-dom": "^3.0.0",
"microbundle": "^0.11.0",
"parcel-bundler": "^1.12.5",
"react": "^16.8.2",
"react-dom": "^16.8.2",
"react-test-renderer": "^16.8.6",
"react-testing-library": "^5.9.0",
"regenerator-runtime": "^0.13.1",
"semantic-release": "^15.13.19",
"storybook-addon-react-live-edit": "^2.0.4"
},
"peerDependencies": {
"react": "^16.8.0"
},
"dependencies": {
"lodash.isequal": "^4.5.0",
"shallowequal": "^1.1.0"
},
"repository": {
"type": "git",
"url": "https://github.com/beizhedenglong/react-hooks-lib.git"
}
}