-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
80 lines (80 loc) · 2.36 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
{
"name": "react-composition-provider",
"version": "0.0.1",
"homepage": "http://orir.github.io/react-composition-provider",
"repository": {
"type": "git",
"url": "https://github.com/OriR/react-composition-provider.git"
},
"bugs": {
"url": "https://github.com/OriR/react-composition-provider/issues"
},
"description": "A High Order Component library for components to follow the Composition Provider pattern",
"license": "MIT",
"keywords": [
"react",
"composition",
"provider",
"context",
"consumer",
"pattern",
"props",
"drilling"
],
"main": "dist/index.js",
"module": "es/index.js",
"dependencies": {},
"peerDependencies": {
"react": "^16.0.0",
"react-dom": "^16.0.0"
},
"devDependencies": {
"@babel/cli": "^7.2.3",
"@babel/core": "^7.2.2",
"@babel/plugin-proposal-object-rest-spread": "^7.2.0",
"@babel/plugin-transform-react-display-name": "^7.2.0",
"@babel/plugin-transform-react-jsx": "7.2.0",
"@babel/plugin-transform-runtime": "^7.2.0",
"@babel/preset-env": "^7.2.0",
"cross-env": "^5.2.0",
"eslint-config-prettier": "^3.3.0",
"eslint-plugin-prettier": "^3.0.1",
"eslint-plugin-react": "^7.12.3",
"gh-pages": "^2.0.1",
"lint-staged": "^8.1.0",
"npm-missing-link": "0.0.2",
"prettier": "^1.15.3",
"react": "16.8.0-alpha.0",
"react-dom": "16.8.0-alpha.0",
"react-overlays": "^1.0.0",
"react-scripts-rewired": "^2.1.3",
"rollup": "^1.1.0",
"rollup-plugin-babel": "^4.2.0",
"rollup-plugin-clear": "^2.0.7",
"rollup-plugin-commonjs": "^9.2.0",
"rollup-plugin-node-resolve": "^4.0.0",
"rollup-plugin-replace": "^2.1.0",
"rollup-plugin-terser": "^4.0.2",
"uncontrollable": "^6.0.0"
},
"scripts": {
"start": "react-scripts start",
"build": "rollup -c",
"test": "echo hello",
"eject": "react-scripts eject",
"predeploy": "npm run build",
"deploy": "gh-pages -d build",
"prepublishOnly": "npm run build:production",
"build:site": "react-scripts build",
"build:production": "cross-env NODE_ENV=production rollup -c",
"build:development": "cross-env NODE_ENV=development rollup -c",
"link": "node_modules/.bin/npm-missing-link",
"unlink": "node_modules/.bin/npm-missing-unlink"
},
"browserslist": [
">0.2%",
"not dead",
"not ie <= 11",
"not op_mini all"
]
}