-
Notifications
You must be signed in to change notification settings - Fork 44
/
package.json
62 lines (62 loc) · 1.57 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
{
"name": "@risingstack/graffiti",
"version": "3.3.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'",
"eslint": "eslint src",
"prepublish": "npm test && npm run build",
"build": "rm -rf lib/* && babel src --ignore *.spec.js --out-dir lib"
},
"author": "RisingStack",
"repository": {
"type": "git",
"url": "[email protected]:RisingStack/graffiti.git"
},
"license": "MIT",
"keywords": [
"GraphQL",
"graffiti",
"express",
"hapi",
"koa",
"ORM"
],
"bugs": {
"url": "https://github.com/RisingStack/graffiti/issues"
},
"homepage": "https://github.com/RisingStack/graffiti#readme",
"dependencies": {
"babel-runtime": "6.11.6",
"boom": "4.0.0"
},
"devDependencies": {
"babel": "6.5.2",
"babel-cli": "6.14.0",
"babel-eslint": "6.1.2",
"babel-plugin-array-includes": "2.0.3",
"babel-plugin-transform-runtime": "6.15.0",
"babel-preset-es2015": "6.14.0",
"babel-preset-stage-0": "6.5.0",
"babel-register": "6.14.0",
"chai": "3.5.0",
"chai-subset": "1.3.0",
"eslint": "3.5.0",
"eslint-config-airbnb-base": "7.1.0",
"eslint-plugin-import": "1.15.0",
"eslint-plugin-react": "6.2.2",
"express": "4.14.0",
"graphql": "0.7.0",
"hapi": "15.0.3",
"koa": "2.0.0-alpha.2",
"mocha": "3.0.2",
"pre-commit": "1.1.3",
"sinon": "1.17.5",
"sinon-chai": "2.8.0"
},
"pre-commit": [
"eslint",
"test"
]
}