-
Notifications
You must be signed in to change notification settings - Fork 9
/
package.json
60 lines (60 loc) · 1.75 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
49
50
51
52
53
54
55
56
57
58
59
60
{
"name": "apollo-link-watched-mutation",
"version": "0.1.0",
"description": "An interface for providing default updates for mutation - query pairings",
"keywords": [
"apollo",
"link",
"graphql",
"redux"
],
"license": "ISC",
"author": {
"name": "John Haytko",
"email": "johnhaytko@gmail.com"
},
"repository": {
"type": "git",
"url": "git+https://github.com/haytko/apollo-link-watched-mutation.git"
},
"bugs": "https://github.com/haytko/apollo-link-watched-mutation/issues",
"files": [
"lib"
],
"main": "./lib/main/index.js",
"module": "./src/module/index.js",
"browserslist": "> 1%",
"scripts": {
"clean": "rimraf lib/*",
"build:main": "babel src -d lib/main --config-file ./babel.main.json",
"build:module": "babel src -d lib/module --config-file ./babel.module.json",
"build": "npm run build:main && npm run build:module",
"prepublishOnly": "npm test && npm run clean && npm run build",
"test": "jest"
},
"dependencies": {
"@babel/runtime": "^7.0.0-beta.32",
"apollo-utilities": "^1.0.0"
},
"peerDependencies": {
"apollo-link": "^1.0.0",
"graphql": "^0.11.0"
},
"devDependencies": {
"@babel/cli": "^7.0.0-beta.32",
"@babel/core": "^7.0.0-beta.32",
"@babel/plugin-proposal-class-properties": "^7.0.0-beta.39",
"@babel/plugin-proposal-object-rest-spread": "^7.0.0-beta.32",
"@babel/plugin-transform-runtime": "^7.0.0-beta.32",
"@babel/preset-env": "^7.0.0-beta.32",
"apollo-link": "^1.0.0",
"babel-core": "^7.0.0-bridge.0",
"babel-jest": "^22.1.0",
"graphql": "^0.11.0",
"graphql-tag": "^2.6.1",
"jest": "^22.1.4",
"jest-environment-node-debug": "^2.0.0",
"regenerator-runtime": "^0.11.1",
"rimraf": "^2.6.2"
}
}