forked from knex/knex
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
143 lines (143 loc) · 4.41 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
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
{
"name": "knex",
"version": "0.14.4",
"description": "A batteries-included SQL query & schema builder for Postgres, MySQL and SQLite3 and the Browser",
"main": "knex.js",
"dependencies": {
"babel-runtime": "^6.26.0",
"bluebird": "^3.5.1",
"chalk": "2.3.0",
"commander": "^2.13.0",
"debug": "3.1.0",
"inherits": "~2.0.3",
"interpret": "^1.1.0",
"liftoff": "2.5.0",
"lodash": "^4.17.4",
"minimist": "1.2.0",
"mkdirp": "^0.5.1",
"pg-connection-string": "2.0.0",
"readable-stream": "2.3.3",
"safe-buffer": "^5.1.1",
"tarn": "^1.1.2",
"tildify": "1.2.0",
"uuid": "^3.2.1",
"v8flags": "^3.0.1"
},
"devDependencies": {
"JSONStream": "^1.3.2",
"async": "^2.6.0",
"babel-cli": "^6.26.0",
"babel-eslint": "^8.2.1",
"babel-plugin-add-module-exports": "^0.2.1",
"babel-plugin-lodash": "3.3.2",
"babel-plugin-transform-runtime": "^6.23.0",
"babel-preset-env": "^1.6.1",
"chai": "^4.1.2",
"coveralls": "~3.0.0",
"eslint": "4.16.0",
"eslint-plugin-import": "^2.8.0",
"estraverse": "^4.2.0",
"istanbul": "^0.4.5",
"json-loader": "^0.5.7",
"mariasql": "^0.2.6",
"mocha": "^3.5.3",
"mock-fs": "^4.4.2",
"mssql": "^4.1.0",
"mysql": "^2.15.0",
"mysql2": "^1.5.2",
"pg": "^7.4.1",
"pg-query-stream": "^1.1.1",
"rimraf": "^2.6.2",
"sinon": "^4.2.2",
"sinon-chai": "^2.14.0",
"source-map-support": "^0.5.3",
"sqlite3": "^3.1.13",
"tap-spec": "^4.1.1",
"tape": "^4.8.0",
"through": "^2.3.8",
"toxiproxy-node-client": "^2.0.6"
},
"buildDependencies": [
"babel-cli",
"babel-plugin-add-module-exports",
"babel-plugin-lodash",
"babel-plugin-transform-runtime",
"babel-preset-es2015",
"babel-preset-es2015-loose",
"rimraf"
],
"scripts": {
"build": "npm run babel",
"debug_test": "node-debug _mocha -t 0 test/index.js",
"babel": "rimraf ./lib && babel src --out-dir lib --copy-files",
"coveralls": "cat ./test/coverage/lcov.info | ./node_modules/coveralls/bin/coveralls.js",
"dev": "rimraf ./lib && babel -w src --out-dir lib --copy-files",
"lint": "eslint src/**",
"plaintest": "mocha -t 10000 -b -R spec test/index.js && npm run tape",
"prepublish": "npm run babel",
"pre_test": "npm run lint",
"tape": "node test/tape/index.js | tap-spec",
"debug_tape": "node-debug test/tape/index.js",
"test": "npm run pre_test && istanbul --config=test/.istanbul.yml cover node_modules/mocha/bin/_mocha -- --check-leaks -t 10000 -b -R spec test/index.js && npm run tape",
"oracledb:test": "docker rmi -f --no-prune knex-test-oracledb && docker build -f scripts/oracle-tests-Dockerfile --tag knex-test-oracledb . && docker run -i -t knex-test-oracledb",
"mssql:init": "docker-compose -f scripts/mssql-docker-compose.yml up --no-start && docker-compose -f scripts/mssql-docker-compose.yml start",
"mssql:test": "DB=mssql npm test",
"mssql:destroy": "docker-compose -f scripts/mssql-docker-compose.yml stop",
"stress:init": "docker-compose -f scripts/stress-test/docker-compose.yml up --no-start && docker-compose -f scripts/stress-test/docker-compose.yml start",
"stress:test": "node scripts/stress-test/knex-stress-test.js | grep -A 3 -- '- STATS '",
"stress:destroy": "docker-compose -f scripts/stress-test/docker-compose.yml stop"
},
"bin": {
"knex": "./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": {
"./lib/migrate/index.js": "./lib/util/noop.js",
"./lib/bin/cli.js": "./lib/util/noop.js",
"./lib/seed/index.js": "./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,
"oracledb": false
},
"react-native": {
"./lib/migrate": "./lib/util/noop.js",
"./lib/seed": "./lib/util/noop.js"
},
"files": [
"CONTRIBUTING.md",
"README.md",
"bin/*",
"src/*",
"lib/*",
"knex.js",
"LICENSE",
"CHANGELOG.md",
"scripts/*"
],
"license": "MIT",
"tonicExampleFilename": "scripts/runkit-example.js"
}