-
Notifications
You must be signed in to change notification settings - Fork 12
/
Copy pathpackage.json
56 lines (56 loc) · 1.36 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": "1.1.0",
"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 && knex migrate:latest",
"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": "^7.5.5",
"@babel/core": "^7.5.5",
"@babel/polyfill": "^7.4.4",
"@babel/preset-env": "^7.5.5",
"babel-jest": "^24.9.0",
"bookshelf": "^1.0.0",
"co": "^4.6.0",
"graphql": "^14.5.4",
"graphql-relay": "^0.6.0",
"jest-cli": "^24.9.0",
"knex": "^0.19.3",
"regenerator-runtime": "^0.13.3",
"sqlite3": "^4.1.0"
},
"jest": {
"roots": [
"<rootDir>/specs"
],
"setupFiles": [
"<rootDir>/config/env.js"
]
},
"peerDependencies": {
"bookshelf": "^0.15.1",
"graphql": "^14.5.4"
}
}