-
Notifications
You must be signed in to change notification settings - Fork 5
/
package.json
122 lines (122 loc) · 3.27 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
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
{
"name": "primus-graphql",
"version": "3.0.0",
"description": "Primus server and client plugins for GraphQL and Relay",
"main": "index.js",
"browser": {
"index.js": "require.js"
},
"scripts": {
"build": "make build",
"test": "npm run test-unit",
"test-unit": "jest --coverage src",
"test-unit-watch": "jest --coverage --watch src",
"test-browser": "make build-browser && karma start __browser_tests__/karmaconf.js",
"test-browser-watch": "make build-browser && WATCH=true karma start __browser_tests__/karmaconf.js",
"test-debug-server": "DEBUG=primus-graphql:* nodemon -w __browser_tests__/fixtures --inspect __browser_tests__/fixtures/debug-server.js",
"test-watch": "nodemon -x mocha ./test",
"lint": "standard"
},
"repository": {
"type": "git",
"url": "https://github.com/tjmehta/primus-graphql.git"
},
"keywords": [
"primus",
"graphql",
"server",
"client",
"query",
"relay",
"socket",
"websocket",
"websockets",
"socket.io",
"engine.io",
"subscriptions",
"live queries"
],
"author": "Tejesh Mehta",
"license": "MIT",
"bugs": {
"url": "https://github.com/tjmehta/primus-graphql/issues"
},
"homepage": "https://github.com/tjmehta/primus-graphql",
"devDependencies": {
"babel-cli": "^6.26.0",
"babel-plugin-relay": "^1.6.2",
"babel-polyfill": "^6.26.0",
"babel-preset-es2015": "^6.24.1",
"babel-preset-react": "^6.24.1",
"babelify": "^8.0.0",
"browserify": "^14.5.0",
"chai": "^4.1.2",
"engine.io": "^3.2.0",
"engine.io-client": "^3.2.1",
"exposed-promise": "^1.0.0",
"graphql": "^14.0.2",
"graphql-relay": "^0.5.5",
"graphql-relay-subscription": "^0.2.0",
"jest": "^23.6.0",
"karma": "^3.1.0",
"karma-browserify": "^5.3.0",
"karma-chrome-launcher": "^2.2.0",
"karma-mocha": "^1.3.0",
"listen-all": "^1.0.1",
"mocha": "^4.0.1",
"object-loops": "^0.7.0",
"primus": "^7.2.3",
"react": "^16.5.2",
"react-addons-test-utils": "^15.6.2",
"react-dom": "^16.5.2",
"react-relay": "^1.6.2",
"relay-compiler": "^1.6.2",
"rxjs": "^5.5.7",
"shimmer": "^1.2.0",
"standard": "^10.0.3",
"throw-next-tick": "^0.1.0",
"uws": "^8.14.1",
"watchify": "^3.11.0"
},
"dependencies": {
"101": "^1.6.1",
"@babel/core": "^7.1.0",
"call-me-maybe": "^1.0.1",
"cast-array": "^1.0.1",
"debug": "^4.1.1",
"error-to-json": "^1.1.0",
"iterall": "^1.0.2",
"observable-backoff": "^2.0.0",
"promise-retry": "^1.1.1",
"promised-observable": "^1.0.0",
"static-observable": "^1.0.0",
"uuid": "^3.0.1",
"warning": "^3.0.0"
},
"peerDependencies": {
"graphql": "^0.10.0 || ^0.11.0 || ^0.12.0 || ^0.13.0 || ^14.0.0",
"primus": "^5.0.0 || ^6.0.0 || ^7.0.0",
"relay-runtime": "^1.6.2",
"rxjs": "^5.0.0"
},
"jest": {
"automock": true,
"clearMocks": true,
"resetMocks": true,
"restoreMocks": true,
"resetModules": true,
"testRegex": "(/__tests__/.*(test|unit))\\.jsx?$",
"coveragePathIgnorePatterns": [
"__fixtures__"
],
"testPathIgnorePatterns": [
"__fixtures__",
"lib"
],
"unmockedModulePathPatterns": [
"__tests__",
"__fixtures__",
"node_modules"
]
}
}