-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
executable file
·52 lines (52 loc) · 1.32 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": "graphql-db-projection",
"version": "1.0.17",
"description": "",
"main": "dist/index.js",
"scripts": {
"build": "babel index.js --out-dir dist",
"prepublish": "npm run build",
"flow": "flow index.js",
"lint": "eslint .",
"test": "mocha --compilers js:babel-core/register 'test/**/*.spec.js'"
},
"repository": {
"type": "git",
"url": "git+https://github.com/markshapiro/graphql-db-projection.git"
},
"keywords": [
"mongo",
"mongodb",
"graphql",
"project",
"projection",
"apollo",
"apollo-server",
"select"
],
"author": "",
"license": "MIT",
"bugs": {
"url": "https://github.com/markshapiro/graphql-db-projection/issues"
},
"homepage": "https://github.com/markshapiro/graphql-db-projection#readme",
"devDependencies": {
"babel-cli": "^6.22.2",
"babel-eslint": "^7.1.1",
"babel-plugin-transform-flow-strip-types": "^6.22.0",
"babel-preset-es2015": "^6.22.0",
"babel-preset-stage-0": "^6.22.0",
"chai": "^3.5.0",
"eslint": "^3.14.1",
"eslint-config-airbnb-base": "^11.0.1",
"eslint-plugin-import": "^2.2.0",
"flow-bin": "^0.38.0",
"graphql": "^0.9.1",
"graphql-tools": "^3.0.2",
"mocha": "^3.2.0"
},
"peerDependencies": {
"graphql": ">= 0.8.0, < 1.0.0",
"graphql-tools": ">= 3.0.0"
}
}