forked from RisingStack/graffiti-mongoose
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
65 lines (65 loc) · 1.72 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
{
"name": "@risingstack/graffiti-mongoose",
"version": "6.0.0",
"description": "Mongoose adapter for graffiti (Node.js GraphQL ORM)",
"main": "lib/index.js",
"scripts": {
"test": "NODE_ENV=test mocha --compilers js:babel-register 'src/**/*.spec.js'",
"lint": "eslint src",
"prepublish": "npm run build",
"build": "rm -rf lib/* && babel src --ignore *.spec.js --out-dir lib",
"coverage": "NODE_ENV=test babel-istanbul cover _mocha 'src/**/*.spec.js'"
},
"author": "RisingStack",
"repository": {
"type": "git",
"url": "[email protected]:RisingStack/graffiti-mongoose.git"
},
"bugs": {
"url": "https://github.com/RisingStack/graffiti-mongoose/issues"
},
"homepage": "https://github.com/RisingStack/graffiti-mongoose#readme",
"license": "MIT",
"keywords": [
"GraphQL",
"graffiti",
"mongoose",
"ORM",
"Relay"
],
"dependencies": {
"babel-runtime": "6.22.0",
"graphql-relay": "0.5.1",
"lodash": "4.17.4"
},
"peerDependencies": {
"graphql": "^0.9.0"
},
"devDependencies": {
"babel": "6.5.2",
"babel-cli": "6.22.2",
"babel-eslint": "7.1.1",
"babel-istanbul": "0.12.1",
"babel-plugin-array-includes": "2.0.3",
"babel-plugin-transform-runtime": "6.22.0",
"babel-preset-es2015": "6.22.0",
"babel-preset-stage-0": "6.22.0",
"babel-register": "6.22.0",
"chai": "3.5.0",
"chai-subset": "1.4.0",
"eslint": "3.14.1",
"eslint-config-airbnb-base": "11.0.1",
"eslint-plugin-import": "2.2.0",
"graphql": "0.9.1",
"mocha": "3.2.0",
"mongoose": "4.7.8",
"objectid": "3.2.1",
"pre-commit": "1.2.2",
"sinon": "1.17.7",
"sinon-chai": "2.8.0"
},
"pre-commit": [
"lint",
"test"
]
}