-
Notifications
You must be signed in to change notification settings - Fork 38
/
package.json
52 lines (52 loc) · 1.28 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
{
"name": "lokka-transport-http",
"version": "1.6.1",
"description": "Isomorphic HTTP Transport for Lokka",
"repository": {
"type": "git",
"url": "https://github.com/kadirahq/lokka-transport-http.git"
},
"license": "MIT",
"options": {
"mocha": "--require scripts/mocha_runner lib/**/__tests__/**/*.js"
},
"keywords": [
"lokka",
"transport",
"http"
],
"scripts": {
"prepublish": ". ./scripts/prepublish.sh",
"lint": "eslint ./lib",
"lintfix": "eslint ./lib --fix",
"testonly": "mocha $npm_package_options_mocha",
"test": "npm run lint && npm run testonly"
},
"devDependencies": {
"mocha": "2.x.x",
"chai": "3.x.x",
"eslint": "1.7.x",
"babel-eslint": "4.x.x",
"eslint-plugin-babel": "2.x.x",
"babel-cli": "6.x.x",
"babel-core": "6.x.x",
"babel-polyfill": "6.x.x",
"babel-preset-es2015": "6.x.x",
"babel-preset-stage-2": "6.x.x",
"babel-plugin-transform-runtime": "6.x.x",
"portscanner": "1.x.x",
"express": "4.x.x",
"express-graphql": "0.4.x",
"graphql": "0.4.x",
"bluebird": "2.x.x",
"lokka": "1.x.x"
},
"dependencies": {
"babel-runtime": "6.x.x",
"node-fetch": "^1.5.2",
"whatwg-fetch": "^1.0.0"
},
"peerDependencies": {
"lokka": "1.x.x"
}
}