-
Notifications
You must be signed in to change notification settings - Fork 10
/
package.json
93 lines (93 loc) · 1.96 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
82
83
84
85
86
87
88
89
90
91
92
93
{
"name": "graphql-thinky",
"version": "0.4.0-rc-3",
"description": "GraphQL & Relay powered by thinky / RethinkDB",
"repository": "https://github.com/fenos/graphql-thinky",
"main": "lib/index.js",
"scripts": {
"check": "node_modules/.bin/xo src/*.js src/**/*.js",
"test": "npm run check && node_modules/.bin/ava --verbose && rm -rf rethinkdb_data",
"build": "rm -rf lib && BABEL_ENV=production babel src -d lib"
},
"dependencies": {
"dataloader": "^1.2.0",
"graphql-relay": "^0.4.1",
"lodash": "^4.0.0",
"thinky-export-schema": "^2.0.0"
},
"devDependencies": {
"ava": "^0.17.0",
"babel": "^6.5.2",
"babel-cli": "^6.9.0",
"babel-eslint": "^6.0.3",
"babel-polyfill": "^6.8.0",
"babel-preset-es2015": "^6.6.0",
"babel-preset-stage-0": "^6.5.0",
"babel-register": "^6.9.0",
"babel-runtime": "^6.0.8",
"chai": "^3.0.0",
"chai-as-promised": "^5.1.0",
"eslint": "^1.7.3",
"graphql": "^0.8.0",
"nyc": "^6.4.4",
"sinon": "^1.15.4",
"sinon-as-promised": "^4.0.0",
"sinon-chai": "^2.8.0",
"thinky": "^2.3.2",
"xo": "^0.15.1"
},
"peerDependencies": {
"graphql": "^0.8.0",
"thinky": "^2.3.2"
},
"ava": {
"files": [
"test/integration/*.test.js",
"test/unit/*.js"
],
"failFast": true,
"require": [
"babel-register"
]
},
"babel": {
"presets": [
"es2015",
"stage-0"
],
"plugins": [
"transform-runtime"
],
"ignore": "test/",
"env": {
"development": {
"sourceMaps": "inline"
}
}
},
"author": "Fabrizio Fenoglio",
"license": "MIT",
"xo": {
"esnext": true,
"ignore": [
"example/**"
],
"rules": {
"xo/filename-case": [
"error",
{
"case": "camelCase"
}
],
"one-var": 0,
"indent": [
2,
2,
{
"SwitchCase": 1
}
],
"dot-notation": 0
}
}
}