-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
64 lines (64 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
{
"name": "@xibang/mysql",
"version": "1.0.1",
"description": "Node.js MySQL封装优化",
"main": "src/index.js",
"engines": {
"node": ">= 8.0.0"
},
"scripts": {
"test": "nyc ava -vs",
"coverage": "nyc report --reporter=text-lcov > coverage.lcov | codecov",
"start": "nyc --reporter html ava -vs && open ./.nyc_output/index.html"
},
"ava": {
"files": [
"test/**/*.js",
"!**/_*/*.js",
"!**/_*.js"
]
},
"nyc": {
"lines": 80,
"check-coverage": true,
"reporter": [
"text-lcov"
],
"report-dir": "./.nyc_output",
"exclude": [
"test",
"test{,-*}.js",
"**/*.test.js",
"**/__tests__/**"
]
},
"repository": {
"type": "git",
"url": "https://github.com/xibang/node-mysql.git"
},
"keywords": [
"api",
"sdk",
"open",
"mysql",
"db"
],
"author": "Willin Wang",
"license": "Apache-2.0",
"bugs": {
"url": "https://github.com/xibang/node-mysql/issues"
},
"homepage": "https://github.com/xibang/node-mysql#readme",
"devDependencies": {
"ava": "^0.22.0",
"codecov": "^3.6.5",
"eslint": "^4.7.0",
"eslint-config-willin": "*",
"nyc": "^11.2.1"
},
"dependencies": {
"@xibang/node-common": "*",
"debug": "*",
"mysql": "*"
}
}