-
Notifications
You must be signed in to change notification settings - Fork 11
/
package.json
48 lines (48 loc) · 1.2 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
{
"name": "mysql-promise",
"version": "5.0.0",
"description": "Small wrapper for mysql that use promises.",
"main": "index.js",
"scripts": {
"test": "NODE_ENV=test npm run lint && istanbul cover -i 'index.js' _mocha -- -u exports --exit -R spec 'test/**/*.test.js'",
"lint": "eslint --ext '.js' test index.js",
"release": "npm test && release-it -n -i patch",
"release:minor": "npm test && release-it -n -i minor",
"release:major": "npm test && release-it -n -i major"
},
"engines": {
"node": ">=6.0.0"
},
"repository": {
"type": "git",
"url": "https://github.com/martinj/node-mysql-promise"
},
"keywords": [
"mysql",
"promise"
],
"author": "Martin Jonsson <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/martinj/node-mysql-promise/issues"
},
"dependencies": {
"bluebird": "^3.5.2",
"mysql": "^2.16.0"
},
"devDependencies": {
"@aptoma/eslint-config": "^5.0.1",
"eslint": "^5.6.0",
"istanbul": "^0.4.5",
"mocha": "^5.2.0",
"mysql2": "^1.6.1",
"release-it": "^2.5.1",
"should": "^13.2.3",
"sinon": "^6.3.4"
},
"greenkeeper": {
"ignore": [
"eslint"
]
}
}