forked from Vincit/db-errors
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
54 lines (54 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
49
50
51
52
53
54
{
"name": "db-errors",
"version": "0.2.3",
"description": "Unified node.js error API for mysql, postgres and sqlite3",
"main": "lib/dbErrors.js",
"scripts": {
"test": "mocha --slow 10 --timeout 15000 --reporter spec --recursive tests",
"test-travis": "mocha --slow 10 --timeout 15000 --reporter spec --recursive tests"
},
"repository": {
"type": "git",
"url": "git+ssh://git@github.com/Vincit/db-errors.git"
},
"keywords": [
"mysql",
"postgres",
"postgresql",
"sqlite3",
"error",
"errors",
"error",
"handling",
"error",
"handler"
],
"author": {
"name": "Sami Koskimäki",
"email": "sami@jakso.me",
"url": "https://github.com/koskimas"
},
"license": "MIT",
"bugs": {
"url": "https://github.com/Vincit/db-errors/issues"
},
"files": [
"README.md",
"LICENSE",
"index.d.ts",
"lib/*"
],
"homepage": "https://github.com/Vincit/db-errors#readme",
"devDependencies": {
"bluebird": "^3.5.3",
"expect.js": "^0.3.1",
"knex": "^0.14.6",
"lodash": "^4.17.11",
"mocha": "^5.2.0",
"mssql": "^5.0.3",
"mysql": "^2.16.0",
"mysql2": "^1.6.4",
"pg": "^7.7.1",
"sqlite3": "^4.0.4"
}
}