forked from CodeFoodPixels/node-promise-mysql
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
50 lines (50 loc) · 1.03 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
{
"name": "@toriihq/promise-mysql-native",
"version": "5.2.0",
"description": "A Promise 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/toriihq/node-promise-mysql"
},
"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",
"mysql": "^2.18.1"
},
"devDependencies": {
"proxyquire": "^2.0.1",
"sinon": "^8.1.0",
"tap": "^15.0.9"
}
}