forked from knex/knex
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
104 lines (104 loc) · 2.7 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
96
97
98
99
100
101
102
103
104
{
"name": "knex",
"version": "0.10.0",
"description": "A batteries-included SQL query & schema builder for Postgres, MySQL and SQLite3 and the Browser",
"main": "knex.js",
"dependencies": {
"bluebird": "^3.3.4",
"chalk": "^1.0.0",
"commander": "^2.2.0",
"debug": "^2.1.3",
"inherits": "~2.0.1",
"interpret": "^0.6.5",
"liftoff": "~2.2.0",
"lodash": "^4.6.0",
"minimist": "~1.1.0",
"mkdirp": "^0.5.0",
"pg-connection-string": "^0.1.3",
"pool2": "^1.1.0",
"readable-stream": "^1.1.12",
"tildify": "~1.0.0",
"v8flags": "^2.0.2"
},
"devDependencies": {
"JSONStream": "^1.0.3",
"async": "^0.9.0",
"babel": "^5.2.17",
"chai": "^2.3.0",
"coveralls": "~2.11.1",
"istanbul": "~0.3.0",
"jshint": "^2.7.0",
"mariasql": "^0.2.3",
"mocha": "^2.2.4",
"mssql": "^2.3.2",
"mysql": "^2.6.2",
"mysql2": "^0.15.5",
"node-uuid": "~1.4.0",
"pg": "^4.3.0",
"pg-query-stream": "^0.7.0",
"rimraf": "2.x",
"sinon": "^1.10.0",
"sinon-chai": "^2.5.0",
"sqlite3": "^3.0.5",
"tap-spec": "^4.0.0",
"tape": "^4.0.0",
"through": "^2.3.4"
},
"scripts": {
"dev": "babel -L -D -w src/ --out-dir lib/",
"babel": "babel -L -D src/ --out-dir lib/",
"build": "./scripts/build.sh",
"tape": "node test/tape/index.js | tap-spec",
"test": "npm run babel && npm run jshint && istanbul --config=test/.istanbul.yml cover node_modules/mocha/bin/_mocha -- --check-leaks -t 5000 -b -R spec test/index.js && npm run tape",
"plaintest": "mocha --check-leaks -t 10000 -b -R spec test/index.js && npm run tape",
"coveralls": "cat ./test/coverage/lcov.info | ./node_modules/coveralls/bin/coveralls.js",
"jshint": "jshint test/. src/.",
"prepublish": "npm run build"
},
"bin": {
"knex": "./lib/bin/cli.js"
},
"repository": {
"type": "git",
"url": "git://github.com/tgriesser/knex.git"
},
"keywords": [
"sql",
"query",
"postgresql",
"mysql",
"mariadb",
"sqlite3",
"oracle",
"mssql"
],
"author": {
"name": "Tim Griesser",
"web": "https://github.com/tgriesser"
},
"browser": {
"bluebird/js/main/promise": "./lib/util/bluebird.js",
"./lib/migrate/index.js": "./lib/util/noop.js",
"./lib/bin/cli.js": "./lib/util/noop.js",
"./lib/seed/index.js": "./lib/util/noop.js",
"pool2": "./lib/util/noop.js",
"mssql": false,
"mysql": false,
"mysql2": false,
"mariasql": false,
"pg": false,
"pg-query-stream": false,
"oracle": false,
"strong-oracle": false,
"sqlite3": false
},
"files": [
"README.md",
"src/*",
"lib/*",
"build/*",
"knex.js",
"LICENSE"
],
"license": "MIT"
}