-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
95 lines (95 loc) · 2.48 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
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
{
"name": "knex",
"version": "0.7.3",
"description": "A batteries-included SQL query & schema builder for Postgres, MySQL and SQLite3 and the Browser",
"main": "knex.js",
"directories": {
"test": "test"
},
"browser": {
"./lib/dialects/oracle": false,
"./lib/dialects/strong-oracle": false,
"./lib/dialects/maria": false,
"./lib/dialects/mysql": false,
"./lib/dialects/mysql2": false,
"./lib/dialects/postgres": false,
"./lib/dialects/sqlite3": false,
"sqlite3": false
},
"dependencies": {
"bluebird": "^2.0.0",
"chalk": "~0.5.1",
"commander": "^2.2.0",
"inherits": "~2.0.1",
"interpret": "^0.3.2",
"liftoff": "~2.0.0",
"lodash": "^3.0.0",
"minimist": "~1.1.0",
"mkdirp": "^0.5.0",
"pool2": "^1.0.0",
"readable-stream": "^1.1.12",
"tildify": "~1.0.0",
"v8flags": "^2.0.2"
},
"devDependencies": {
"through": "^2.3.4",
"browserify": "~5.12.1",
"gulp": "^3.6.2",
"gulp-bump": "^0.1.8",
"gulp-git": "~0.5.0",
"gulp-shell": "^0.2.5",
"gulp-jshint": "^1.8.4",
"chai": "^1.9.1",
"chai-as-promised": "^4.1.0",
"jshint": "~2.5.1",
"mocha": "^1.20.0",
"mysql": "^2.3.1",
"node-uuid": "~1.4.0",
"pg": "^3.2.0",
"pg-query-stream": "^0.6.0",
"rimraf": "2.x",
"sinon": "^1.10.0",
"sinon-chai": "^2.5.0",
"sqlite3": "~3.0.2",
"mariasql": "~0.1.21",
"mysql2": "~0.12.1",
"istanbul": "~0.3.0",
"coveralls": "~2.11.1"
},
"scripts": {
"build": "gulp build",
"plaintest": "mocha --check-leaks -t 5000 -b -R spec test/index.js",
"test": "npm run jshint && istanbul --config=test/.istanbul.yml cover _mocha -- --check-leaks -t 5000 -b -R spec test/index.js",
"coveralls": "cat ./test/coverage/lcov.info | ./node_modules/coveralls/bin/coveralls.js",
"jshint": "gulp jshint",
"release:patch": "gulp jshint && npm test && gulp build && gulp bump --type patch && gulp release",
"release:minor": "gulp jshint && npm test && gulp build && gulp bump --type minor && gulp release"
},
"bin": {
"knex": "./lib/bin/cli.js"
},
"repository": {
"type": "git",
"url": "git://github.com/tgriesser/knex.git"
},
"keywords": [
"sql",
"query",
"postgresql",
"mysql",
"sqlite3"
],
"author": {
"name": "Tim Griesser",
"web": "https://github.com/tgriesser"
},
"files": [
"README.md",
"lib/*",
"browser/*",
"gulpfile.js",
"knex.js",
"LICENSE"
],
"license": "MIT"
}