-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
59 lines (59 loc) · 1.11 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
{
"name": "graphql-mysql-schema",
"version": "0.3.0",
"description": "Generate mysql table schema to graphql defination",
"main": "lib/schema.js",
"scripts": {
"test": "nyc ava --serial"
},
"bin": {
"mygql": "./bin/mygql.js"
},
"keywords": [
"graphql",
"mysql",
"schema",
"type",
"cli"
],
"author": {
"name": "Shaoshuai Dong",
"email": "dongsoso@hotmail.com",
"url": "https://github.com/Dongss"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Dongss/graphql-mysql-schema.git"
},
"bugs": {
"url": "https://github.com/Dongss/graphql-mysql-schema/issues"
},
"homepage": "https://github.com/Dongss/graphql-mysql-schema",
"license": "MIT",
"dependencies": {
"commander": "^2.19.0",
"mysql": "^2.16.0"
},
"devDependencies": {
"ava": "^0.25.0",
"coveralls": "^3.0.2",
"nyc": "^13.1.0",
"sinon": "^7.1.1"
},
"ava": {
"files": [
"test/*.js"
]
},
"nyc": {
"reporter": [
"html",
"lcov",
"text"
],
"exclude": [
"node_modules",
"test"
]
}
}