-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
48 lines (48 loc) · 1.23 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
{
"name": "relay-runtime-query",
"version": "0.7.1",
"description": "Compile your Relay GraphQL queries at runtime, no need for Babel. Only for use in development.",
"main": "./lib/index.js",
"jsnext:main": "./src/index.js",
"scripts": {
"test": "mocha --reporter spec --full-trace test/index.js",
"compile": "babel --presets es2015,stage-0 -d lib/ src/",
"prepublish": "npm run compile"
},
"repository": {
"type": "git",
"url": "meteor/relay-runtime-query"
},
"keywords": [
"ecmascript",
"es2015",
"jsnext",
"javascript",
"relay",
"npm",
"react"
],
"author": "Sashko Stubailo <[email protected]>",
"license": "MIT",
"dependencies": {
"babel-polyfill": "^6.5.0",
"babel-relay-plugin": "0.7.1",
"graphql": "^0.4.17",
"inherits": "^2.0.1",
"react": "^0.14.7",
"react-dom": "^0.14.7",
"react-relay": "0.7.1",
"util": "^0.10.3"
},
"devDependencies": {
"babel-core": "6.3.21",
"babel-loader": "6.2.0",
"babel-plugin-transform-flow-strip-types": "^6.5.0",
"babel-preset-es2015": "^6.5.0",
"babel-preset-stage-0": "^6.5.0",
"graphql": "^0.4.17",
"graphql-relay": "^0.3.6",
"lodash": "^4.5.1",
"mocha": "^2.3.3"
}
}