-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
57 lines (57 loc) · 1.43 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
{
"name": "featful",
"version": "1.0.0",
"description": "Feature Flags made easy.",
"main": "dist/index.cjs.js",
"module": "dist/index.esm.js",
"author": "klujanrosas",
"license": "MIT",
"files": [
"dist"
],
"scripts": {
"build": "rollup -c",
"lint": "eslint .",
"dev": "rollup -c -d",
"prepare": "yarn build"
},
"husky": {
"hooks": {
"pre-commit": "yarn lint"
}
},
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
},
"devDependencies": {
"@babel/core": "^7.0.0",
"@babel/plugin-proposal-object-rest-spread": "^7.0.0",
"@babel/plugin-transform-runtime": "^7.0.0",
"@babel/preset-env": "^7.0.0",
"@babel/preset-react": "^7.0.0",
"@riqra/eslint-config-react": "^1.1.0",
"commitizen": "^2.10.1",
"cz-conventional-changelog": "^2.1.0",
"eslint": "^5.5.0",
"eslint-config-airbnb": "17.1.0",
"eslint-plugin-import": "^2.14.0",
"eslint-plugin-jsx-a11y": "^6.1.1",
"eslint-plugin-react": "^7.11.0",
"husky": "^1.0.0-rc.13",
"react": "^16.4.2",
"rollup": "^0.65.2",
"rollup-plugin-babel": "^4.0.3",
"rollup-plugin-bundle-size": "^1.0.2",
"rollup-plugin-commonjs": "^9.1.6",
"rollup-plugin-node-resolve": "^3.4.0"
},
"peerDependencies": {
"react": "^15.0.0 || ^16.0.0"
},
"dependencies": {
"@babel/runtime": "^7.0.0",
"hoist-non-react-statics": "^3.0.1"
}
}