-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpackage.json
More file actions
67 lines (67 loc) · 1.54 KB
/
package.json
File metadata and controls
67 lines (67 loc) · 1.54 KB
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
56
57
58
59
60
61
62
63
64
65
66
67
{
"name": "knex-generic-errors",
"version": "0.1.5",
"description": "A plugin for Knex.js to make it throw more generic errors.",
"main": "lib/index.js",
"scripts": {
"babel": "node_modules/.bin/babel -L -D src/ --out-dir lib/",
"judge": "node_modules/.bin/rimraf node_modules/.judge && judge install",
"prepublish": "node_modules/.bin/rimraf lib && npm run babel",
"test": "npm run judge && mocha test/index.js"
},
"repository": {
"type": "git",
"url": "git://github.com/vellotis/knex-generic-errors.git"
},
"keywords": [
"knex",
"errors"
],
"author": "Kaarel Raspel",
"license": "MIT",
"bugs": {
"url": "https://github.com/vellotis/knex-generic-errors/issues"
},
"homepage": "https://github.com/vellotis/knex-generic-errors#readme",
"dependencies": {
"lodash": "^3.7.0",
"semver": "^5.1.0"
},
"devDependencies": {
"babel": "^5.2.17",
"decache": "^3.0.5",
"judge": "^0.1.1",
"knex": "^0.10||^0.11||^0.12",
"mocha": "^2.4.5",
"mocha-sinon": "^1.1.5",
"mssql": "^2.3.2",
"mysql": "^2.6.2",
"rimraf": "^2.5.2",
"should": "^8.3.0",
"should-sinon": "0.0.5",
"sinon": "^1.17.3"
},
"peerDependencies": {
"knex": "^0.10||^0.11||^0.12"
},
"judge": {
"knex-0.10": {
"knex": "^0.10"
},
"knex-0.11": {
"knex": "^0.11.0 <0.11.4"
},
"knex-0.11.4": {
"knex": "^0.11.4 <0.12.0"
},
"knex-0.12": {
"knex": "^0.12.0"
}
},
"files": [
"LICENCE",
"README.md",
"src/*",
"lib/*"
]
}