-
Notifications
You must be signed in to change notification settings - Fork 10
/
package.json
65 lines (65 loc) · 1.29 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": "sqlx",
"version": "4.3.2",
"description": "Database driver with extended features like mysql changelog/oplog, connection auto release.",
"main": "index.js",
"directories": {
"test": "test"
},
"scripts": {
"test": "nyc ./node_modules/.bin/_mocha; echo .cov/index.html"
},
"repository": {
"type": "git",
"url": "git+https://github.com/yinrong/node-sqlx.git"
},
"keywords": [
"mysql",
"changelog",
"oplog",
"connection",
"auto",
"release"
],
"author": "yinrong",
"license": "MIT",
"bugs": {
"url": "https://github.com/yinrong/node-sqlx/issues"
},
"homepage": "https://github.com/yinrong/node-sqlx#readme",
"dependencies": {
"ajv": "^6.1.1",
"async": "^2.0.1",
"debug": "^2.2.0",
"lodash": "^4.17.4",
"mongo-sql": "^2.7.5",
"monk": "^6.0.5",
"mysql": "^2.11.1",
"redis": "^2.8.0"
},
"devDependencies": {
"coveralls": "^3.0.0",
"mocha": "^3.5.3",
"nyc": "^11.4.1"
},
"nyc": {
"check-coverage": true,
"report-dir": "./.cov",
"include": [
"$/*.js",
"lib/*.js",
"lib/**/*.js"
],
"extension": [
".js"
],
"reporter": [
"html",
"text-summary"
],
"all": true
},
"publishConfig": {
"access": "public"
}
}