-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathpackage.json
70 lines (70 loc) · 2.01 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
{
"name": "redux-graphql-middleware",
"version": "0.1.5",
"description": "Redux GraphQL Actions.",
"main": "lib/index.js",
"scripts": {
"test": "./node_modules/.bin/cross-env BABEL_ENV=compile ./node_modules/.bin/mocha --compilers js:babel-register --recursive",
"compile": "BABEL_ENV=compile ./node_modules/.bin/babel --source-maps inline --optional runtime -d lib/ src/",
"prepublish": "npm run compile",
"ghpage": "lessc ghpage/style.less ghpage.css && pug ./ghpage/index.pug --out ./"
},
"nyc": {
"exclude": [
"*.js",
"lib/*.js",
"coverage/*.js",
"**/__tests__/*.js",
"**/__tests__/fixtures/*.js"
]
},
"repository": {
"type": "git",
"url": "[email protected]:gtg092x/redux-graphql-middleware.git"
},
"keywords": [
"redux",
"redux-graphql",
"graphql",
"middleware"
],
"author": "Matthew Drake <[email protected]> (https://github.com/gtg092x)",
"license": "MIT",
"bugs": {
"url": "https://github.com/gtg092x/redux-graphql-middleware/issues"
},
"devDependencies": {
"babel-cli": "^6.6.5",
"babel-core": "^6.7.2",
"babel-loader": "^6.2.4",
"babel-plugin-transform-runtime": "^6.12.0",
"babel-polyfill": "^6.9.1",
"babel-preset-es2015": "^6.9.0",
"babel-preset-stage-0": "^6.5.0",
"babel-preset-stage-1": "^6.5.0",
"babel-preset-stage-2": "^6.5.0",
"babel-register": "^6.11.6",
"chai": "^3.5.0",
"coveralls": "^2.11.8",
"cross-env": "^2.0.0",
"eslint": "^2.12.0",
"eslint-config-airbnb": "^9.0.1",
"eslint-config-prometheusresearch": "^0.2.0",
"eslint-plugin-import": "^1.8.1",
"express": "^4.14.0",
"express-graphql": "^0.5.3",
"git-hooks": "^1.1.0",
"graphql": "^0.6.2",
"jsdom": "^6.3.0",
"jstransformer-marked": "^1.0.1",
"mocha": "^2.5.3",
"node-libs-browser": "^1.0.0",
"power-assert": "^1.3.1",
"reducify": "^1.0.2",
"isomorphic-fetch": "^2.2.1",
"redux": "^3.5.2"
},
"dependencies": {
"lodash": "^4.15.0"
}
}