-
Notifications
You must be signed in to change notification settings - Fork 17
/
package.json
51 lines (51 loc) · 1.13 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
{
"name": "knex-hooks",
"version": "0.0.9",
"engines": {
"node": ">=6.x"
},
"keywords": [
"knex",
"hooks",
"sql",
"query"
],
"repository": {
"type": "git",
"url": "https://github.com/alekbarszczewski/knex-hooks"
},
"description": "Knex before/after insert/update/select/delete hooks",
"main": "src/knex-hooks.js",
"scripts": {
"test": "./node_modules/.bin/eslint ./src/** ./test/** && ./node_modules/.bin/mocha -R spec",
"release": "./scripts/release.sh"
},
"author": {
"name": "Alek Barszczewski",
"url": "https://github.com/alekbarszczewski"
},
"license": "ISC",
"dependencies": {
"bluebird": "^3.7.2",
"co": "^4.6.0",
"lodash.isfunction": "^3.0.8",
"lodash.remove": "^4.7.0",
"make-array": "^1.0.1",
"object.values": "^1.0.4"
},
"peerDependencies": {
"knex": "^0.12.6"
},
"devDependencies": {
"eslint": "^3.13.1",
"expect.js": "^0.3.1",
"knex": "^0.12.6",
"mariasql": "^0.2.6",
"mocha": "^3.2.0",
"mysql": "^2.12.0",
"mysql2": "^1.1.2",
"pg": "^6.1.2",
"sinon": "^1.17.7",
"sqlite3": "^3.1.8"
}
}