-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
27 lines (27 loc) · 721 Bytes
/
package.json
File metadata and controls
27 lines (27 loc) · 721 Bytes
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
{
"name": "react-combine-contexts",
"version": "0.1.1",
"description": "Use multiple React Contexts without pain.",
"main": "lib/index.js",
"license": "MIT",
"author": "Baptiste Lambert",
"repository": "https://github.com/baptistelambert/react-combine-contexts",
"scripts": {
"build": "babel src -d lib",
"prepare": "npm run build"
},
"dependencies": {
"react": "^16.3.0"
},
"devDependencies": {
"babel-cli": "^6.26.0",
"babel-plugin-transform-object-rest-spread": "^6.26.0",
"babel-plugin-transform-react-jsx": "^6.24.1",
"babel-preset-env": "^1.6.1"
},
"peerDependencies": {
"react": ">= 16.3.0",
"react-dom": ">= 16.3.0"
},
"files": ["lib", "src"]
}