-
Notifications
You must be signed in to change notification settings - Fork 15
/
Copy pathpackage.json
55 lines (55 loc) · 1.33 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
{
"name": "db-errors",
"version": "0.2.3",
"description": "Unified node.js error API for mysql, postgres and sqlite3",
"main": "lib/dbErrors.js",
"scripts": {
"test": "DATABASES=sqlite3,postgres,mysql mocha --slow 10 --timeout 15000 --reporter spec --recursive tests",
"test:ci": "DATABASES=sqlite3,postgres,mysql,mssql mocha --slow 10 --timeout 15000 --reporter spec --recursive tests",
"prettier": "prettier --write \"{lib,tests}/**/*.{js,ts}\""
},
"repository": {
"type": "git",
"url": "git+ssh://[email protected]/Vincit/db-errors.git"
},
"keywords": [
"mysql",
"postgres",
"postgresql",
"sqlite3",
"error",
"errors",
"error",
"handling",
"error",
"handler"
],
"author": {
"name": "Sami Koskimäki",
"email": "[email protected]",
"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.7.2",
"expect.js": "^0.3.1",
"knex": "^0.95.9",
"lodash": "^4.17.21",
"mocha": "^9.0.3",
"mssql": "^7.2.0",
"mysql": "^2.18.1",
"pg": "^8.7.1",
"prettier": "^2.3.2",
"sqlite3": "^5.0.2"
}
}