-
Notifications
You must be signed in to change notification settings - Fork 73
/
package.json
65 lines (65 loc) · 1.39 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
{
"name": "sql-to-graphql",
"version": "2.0.9",
"description": "Generate a GraphQL API based on your SQL database structure",
"main": "index.js",
"scripts": {
"test": "eslint ."
},
"bin": {
"sql2graphql": "./cli.js"
},
"repository": {
"type": "git",
"url": "git+ssh://git@github.com/vaffel/sql-to-graphql.git"
},
"keywords": [
"generator",
"graphql",
"schemas",
"sql",
"type"
],
"preferGlobal": true,
"author": "Espen Hovlandsdal <espen@vaffel.ninja>",
"contributors": [
{
"name": "Kristoffer Brabrand",
"email": "kristoffer@vaffel.ninja"
}
],
"license": "MIT",
"bugs": {
"url": "https://github.com/vaffel/sql-to-graphql/issues"
},
"homepage": "https://github.com/vaffel/sql-to-graphql#readme",
"dependencies": {
"ast-types": "^0.8.4",
"async": "^1.3.0",
"copy-dir": "0.0.8",
"graphql": "^0.2.5",
"inquirer": "^0.9.0",
"knex": "^0.8.6",
"lodash": "^3.10.0",
"mkdirp": "^0.5.1",
"mysql": "^2.8.0",
"pg": "^4.4.1",
"pluralize": "^1.1.2",
"recast": "^0.10.26",
"sqlite3": "^3.1.0",
"yargs": "^3.15.0"
},
"devDependencies": {
"eslint": "^1.2.1",
"eslint-config-vaffel": "^2.0.0"
},
"eslintConfig": {
"extends": "vaffel",
"rules": {
"new-cap": 0,
"no-console": 0,
"no-process-exit": 0,
"no-underscore-dangle": 0
}
}
}