forked from with-heart/apollo-link-response-resolver
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
44 lines (44 loc) · 1.06 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
{
"name": "apollo-link-response-resolver",
"version": "0.0.2",
"description": "Use resolvers to format incoming data with Apollo Link",
"main": "dist/index.js",
"module": "dist/index.esm.js",
"repository": {
"type": "git",
"url": "git+https://github.com/lionize/apollo-link-response-resolver"
},
"bugs": {
"url": "https://github.com/lionize/apollo-link-response-resolver"
},
"homepage": "https://github.com/lionize/apollo-link-response-resolve#readme",
"scripts": {
"build": "rollup -c",
"clean": "rimraf dist/* && rimraf coverage/*",
"prebuild": "npm run clean",
"prepublishOnly": "npm run clean && npm run build",
"test": "jest",
"test:watch": "jest --watch"
},
"keywords": [
"apollo",
"apollo-link",
"graphql"
],
"author": "Mark Chandler",
"license": "MIT",
"devDependencies": {
"babel-preset-env": "^1.6.1",
"jest": "^22.0.4",
"rimraf": "^2.6.2",
"rollup": "^0.53.2"
},
"dependencies": {
"apollo-link": "^1.0.7"
},
"babel": {
"presets": [
"env"
]
}
}