-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
49 lines (49 loc) · 1.39 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
{
"name": "smarty-react-hooks",
"version": "0.2.11",
"description": "My custom react hooks used in programs.",
"github": "https://github.com/shallinta/smarty-react-hooks",
"author": "John Chan",
"keywords": [
"react-hook",
"react",
"useState",
"useEffect",
"rollup"
],
"module": "dist/index.es.js",
"main": "dist/index.cjs.js",
"files": [
"dist"
],
"sideEffects": false,
"scripts": {
"build": "rollup -c",
"prepare": "npm run build",
"release": "standard-version && npm publish",
"release:minor": "standard-version --release-as minor && npm publish",
"release:major": "standard-version --release-as major && npm publish",
"postrelease": "git push && git push origin --tags",
"test": "echo \"Error: no test specified\" && exit 1"
},
"devDependencies": {
"@babel/core": "^7.3.4",
"@babel/preset-env": "^7.3.4",
"eslint-config-airbnb": "^17.1.0",
"eslint-config-airbnb-base": "^13.1.0",
"eslint-plugin-import": "^2.16.0",
"eslint-plugin-jsx-a11y": "^6.2.1",
"eslint-plugin-react": "^7.12.4",
"eslint-plugin-react-hooks": "^1.3.0",
"rollup": "^1.3.3",
"rollup-plugin-babel": "^4.3.2",
"rollup-plugin-eslint": "^5.0.0",
"rollup-plugin-terser": "^4.0.4",
"standard-version": "^9.3.2"
},
"peerDependencies": {
"react": ">=16.8.0",
"react-dom": ">=16.8.0"
},
"license": "MIT"
}