-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathpackage.json
81 lines (81 loc) · 2.48 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
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
{
"name": "sequelize-relay",
"version": "1.0.2",
"description": "A thin wrapper for sequelize and graphql-relay-js",
"main": "lib/index.js",
"scripts": {
"pretest": "cp sequelize/db.fixture.sqlite ./db.test.sqlite && npm run lint && npm run check",
"test": "mocha $npm_package_options_mocha",
"travis": "scripts/travis.sh",
"testonly": "mocha $npm_package_options_mocha",
"seed": "mocha $npm_package_options_seed",
"lint": "eslint src",
"check": "flow check",
"build": "rm -rf lib/* && babel src --ignore __tests__ --out-dir lib",
"watch": "babel scripts/watch.js | node",
"watch:seed": "babel scripts/watch-seed.js | node",
"cover": "babel-node node_modules/.bin/isparta cover --root src --report html node_modules/.bin/_mocha -- $npm_package_options_mocha",
"cover:lcov": "babel-node node_modules/.bin/isparta cover --root src --report lcovonly node_modules/.bin/_mocha -- $npm_package_options_mocha"
},
"repository": {
"type": "git",
"url": "git+https://github.com/MattMcFarland/sequelize-relay.git"
},
"keywords": [
"sequelize",
"graphql",
"relayjs",
"server",
"database"
],
"author": "Matt McFarland",
"license": "MIT",
"bugs": {
"url": "https://github.com/MattMcFarland/sequelize-relay/issues"
},
"homepage": "https://github.com/MattMcFarland/sequelize-relay#readme",
"devDependencies": {
"babel-cli": "^6.18.0",
"babel-core": "^6.18.2",
"babel-eslint": "^7.1.0",
"babel-plugin-transform-flow-strip-types": "^6.18.0",
"babel-polyfill": "^6.16.0",
"babel-preset-es2015": "^6.18.0",
"babel-preset-stage-0": "^6.16.0",
"chai": "^4.0.1",
"chai-as-promised": "^6.0.0",
"coveralls": "^2.11.15",
"eslint": "^3.11.1",
"eslint-plugin-flowtype": "^2.4.0",
"express": "^4.14.0",
"express-graphql": "^0.6.1",
"faker": "^3.1.0",
"flow-bin": "^0.47.0",
"isparta": "^4.0.0",
"lodash": "^4.17.2",
"mocha": "^3.1.2",
"sane": "^1.4.1",
"sqlite3": "^3.1.8",
"graphql": "^0.10.1",
"graphql-relay": "^0.5.0",
"sequelize": "^3.26.0"
},
"peerDependencies": {
"graphql": ">=0.8.2",
"graphql-relay": ">=0.4.4",
"sequelize": ">=3.26.0"
},
"directories": {
"lib": "./lib"
},
"files": [
"lib",
"README.md",
"LICENSE",
"PATENT"
],
"options": {
"mocha": "--require scripts/mocha-bootload src/**/__tests__/**/*.js",
"seed": "--require scripts/mocha-bootload sequelize/**/__tests__/**/*.js"
}
}