-
Notifications
You must be signed in to change notification settings - Fork 12
/
Copy pathpackage.json
56 lines (56 loc) · 1.35 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
{
"name": "graphql-bookshelf",
"version": "0.0.8",
"description": "Some help defining schema around bookshelfjs models.",
"main": "index.js",
"scripts": {
"test": "./node_modules/.bin/jest -b --runInBand",
"build": "./node_modules/.bin/babel src/index.js > index.js",
"pretest": "npm run-script build",
"prepare": "npm run-script build"
},
"repository": {
"type": "git",
"url": "git+https://github.com/brysgo/graphql-bookshelf.git"
},
"keywords": [
"graphql",
"bookshelf",
"bookshelfjs",
"knex",
"relay"
],
"author": "Bryan Goldstein",
"license": "MIT",
"bugs": {
"url": "https://github.com/brysgo/graphql-bookshelf/issues"
},
"homepage": "https://github.com/brysgo/graphql-bookshelf#readme",
"devDependencies": {
"babel-cli": "^6.6.5",
"babel-jest": "^21.0.2",
"babel-polyfill": "^6.7.4",
"babel-preset-es2015": "^6.6.0",
"babel-preset-stage-0": "^6.5.0",
"bookshelf": "^0.12.0",
"co": "^4.6.0",
"graphql": "^0.11.0",
"graphql-relay": "^0.5.1",
"jest-cli": "^21.1.0",
"knex": "0.14.1",
"regenerator-runtime": "^0.11.0",
"sqlite3": "^3.1.8"
},
"jest": {
"roots": [
"<rootDir>/specs"
],
"setupFiles": [
"<rootDir>/config/env.js"
]
},
"peerDependencies": {
"bookshelf": "^0.11.1",
"graphql": "^0.11.0"
}
}