-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathpackage.json
39 lines (39 loc) · 981 Bytes
/
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
{
"name": "normalizr-graphql",
"description": "normalizes graphql responses using the client schema (json file)",
"repository": "http://github.com/eyston/normalizr-graphql",
"license": "MIT",
"version": "0.1.0",
"main": "lib/index.js",
"scripts": {
"update-schema": "babel-node test/scripts/updateSchema",
"test": "mocha --compilers js:babel-register",
"build": "babel src --out-dir lib/",
"start": "babel-node index.js"
},
"dependencies": {
"graphql": "0.4.14",
"immutable": "3.7.5",
"normalizr": "../../git/normalizr"
},
"devDependencies": {
"babel": "6.3.13",
"babel-cli": "6.3.13",
"babel-core": "6.3.13",
"babel-polyfill": "6.3.14",
"babel-preset-es2015": "6.3.13",
"babel-preset-stage-0": "6.3.13",
"babel-register": "6.3.13",
"chai": "3.4.1",
"mocha": "2.3.4"
},
"babel": {
"presets": [
"es2015",
"stage-0"
],
"plugins": [
"./test/plugin.js"
]
}
}