-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
52 lines (52 loc) · 1.23 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
{
"name": "knex",
"version": "0.4.13",
"description": "A query builder for Postgres, MySQL and SQLite3, designed to be flexible, portable, and fun to use.",
"main": "knex.js",
"directories": {
"test": "test"
},
"devDependencies": {
"mocha": "~1.13.0",
"objectdump": "~0.3.0",
"mysql": "~2.0.0-alpha7",
"pg": "~2.8.2",
"sqlite3": "~2.1.7",
"node-uuid": "~1.4.0",
"chai": "~1.8.1",
"rimraf": "~2.2.2",
"grunt": "~0.4.1",
"grunt-release": "~0.6.0",
"mocha-as-promised": "~1.4.0",
"chai-as-promised": "~4.1.0",
"sinon": "~1.7.3",
"sinon-chai": "~2.4.0"
},
"dependencies": {
"underscore": "~1.5.1",
"generic-pool-redux": "~0.1.0",
"bluebird": "~0.9.8-0",
"optimist": "~0.6.0",
"mkdirp": "~0.3.5"
},
"scripts": {
"test": "mocha -R spec test/index.js",
"doc": "groc -o docs --verbose lib/*.js lib/**/*.js clients/*.js clients/**/*.js clients/**/**/*.js knex.js"
},
"repository": {
"type": "git",
"url": "https://github.com/tgriesser/knex.git"
},
"keywords": [
"sql",
"query",
"postgresql",
"mysql",
"sqlite3"
],
"author": {
"name": "Tim Griesser",
"web": "https://github.com/tgriesser"
},
"license": "MIT"
}