-
Notifications
You must be signed in to change notification settings - Fork 9
/
package.json
48 lines (48 loc) · 1.18 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
{
"name": "apollo-phoenix-websocket",
"version": "0.6.2",
"description": "Apollo networkInterface using Phoenix websockets",
"main": "lib/index.js",
"files": [
"lib"
],
"scripts": {
"compile": "babel -d lib/ src",
"test": "mocha --compilers js:babel-register",
"build": "npm run compile",
"clean": "rm -rf lib/",
"prepublish": "npm run clean && npm run build"
},
"repository": {
"type": "git",
"url": "git+https://github.com/vic/apollo-phoenix-websocket.git"
},
"keywords": [
"apollo",
"phoenix",
"websocket",
"gql",
"graphql"
],
"author": "Victor Borja <vborja@apache.org>",
"license": "Apache-2.0",
"bugs": {
"url": "https://github.com/vic/apollo-phoenix-websocket/issues"
},
"homepage": "https://github.com/vic/apollo-phoenix-websocket#readme",
"devDependencies": {
"babel-cli": "^6.18.0",
"babel-preset-es2015": "^6.18.0",
"babel-preset-stage-0": "^6.16.0",
"babel-register": "^6.18.0",
"chai": "^3.5.0",
"graphql-tag": "^1.1.2",
"mocha": "^3.2.0",
"sinon": "^1.17.7"
},
"dependencies": {
"apollo-client": "^0.6.0",
"phoenix": "^1.2.1",
"ramda": "^0.24.1"
}
}