-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
63 lines (63 loc) · 1.58 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
61
62
63
{
"name": "graphql-live-subscriptions",
"version": "1.4.2",
"main": "dist/index.js",
"module": "./dist/index.js",
"author": "Rob Gilson",
"license": "MIT",
"private": false,
"files": [
"dist/",
"src/"
],
"scripts": {
"clean": "rm -rf dist && mkdir dist",
"build": "yarn run clean && babel -d ./dist ./src -s",
"prepublishOnly": "npm run build",
"test": "jest",
"test-debug": "node --inspect-brk node_modules/.bin/jest --runInBand --watch"
},
"babel": {
"presets": [
[
"@babel/preset-env",
{
"targets": {
"node": "current"
}
}
]
],
"plugins": [
"@babel/plugin-proposal-object-rest-spread"
]
},
"dependencies": {
"@d1plo1d/list-diff2": "^0.1.5-0",
"fast-json-patch": "^2.0.6",
"fast-memoize": "^2.3.2"
},
"peerDependencies": {
"graphql": "^0.13.2 || ^14.0.0",
"graphql-subscriptions": "^0.5.8 || ^1.0.0",
"graphql-type-json": "^0.2.0"
},
"devDependencies": {
"@babel/cli": "^7.0.0-beta.43",
"@babel/core": "7.0.0-beta.43",
"@babel/plugin-proposal-object-rest-spread": "^7.0.0-beta.43",
"@babel/preset-env": "^7.0.0-beta.43",
"babel-core": "7.0.0-bridge.0",
"babel-jest": "^22.4.3",
"eslint": "^4.19.1",
"eslint-config-airbnb-base": "^12.1.0",
"eslint-plugin-import": "^2.11.0",
"eslint-plugin-jest": "^21.15.2",
"graphql": "^0.13.2",
"graphql-subscriptions": "^0.5.8",
"graphql-tools": "^3.0.2",
"graphql-type-json": "^0.2.0",
"immutable": "^3.8.2",
"jest": "^22.4.3"
}
}