-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
30 lines (30 loc) · 849 Bytes
/
package.json
File metadata and controls
30 lines (30 loc) · 849 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
28
29
30
{
"name": "relay-context-provider",
"version": "1.0.4",
"description": "Adds relay environment to react context to allow rendering child fragment containers",
"main": "./dist/index.js",
"repository": "https://github.com/robrichard/relay-context-provider",
"author": "Rob Richard",
"license": "MIT",
"scripts": {
"compile": "babel ./src -d ./dist --ignore test.js"
},
"dependencies": {
"prop-types": "^15.5.10"
},
"peerDependencies": {
"react": "^16.0.0-a || ^15.0.0 || ^0.14.0"
},
"devDependencies": {
"babel-cli": "^6.24.1",
"babel-core": "^6.24.1",
"babel-plugin-transform-class-properties": "^6.24.1",
"babel-plugin-transform-object-rest-spread": "^6.23.0",
"babel-preset-es2015": "^6.24.1",
"babel-preset-react": "^6.24.1",
"jest": "^20.0.4"
},
"files": [
"dist"
]
}