-
Notifications
You must be signed in to change notification settings - Fork 61
/
Copy pathpackage.json
52 lines (52 loc) · 1.08 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
{
"name": "promise-mysql",
"version": "5.2.0",
"description": "A bluebird wrapper for node-mysql",
"main": "index.js",
"scripts": {
"tap": "tap",
"test": "tap test/*.js --100",
"coverage": "tap test/*.js --coverage-report=html",
"updatesnapshots": "TAP_SNAPSHOT=1 npm run test"
},
"repository": {
"type": "git",
"url": "https://github.com/lukeb-uk/node-promise-mysql.git"
},
"keywords": [
"promise",
"performance",
"promises",
"promises-a",
"promises-aplus",
"async",
"await",
"deferred",
"deferreds",
"future",
"flow control",
"dsl",
"fluent interface",
"database",
"mysql",
"mysql-promise",
"bluebird",
"q"
],
"author": "Luke Bonaccorsi",
"license": "MIT",
"bugs": {
"url": "https://github.com/lukeb-uk/node-promise-mysql/issues"
},
"dependencies": {
"@types/mysql": "^2.15.2",
"@types/bluebird": "^3.5.26",
"bluebird": "^3.5.1",
"mysql": "^2.18.1"
},
"devDependencies": {
"proxyquire": "^2.0.1",
"sinon": "^8.1.0",
"tap": "^15.0.9"
}
}