forked from bookshelf/bookshelf
-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
63 lines (63 loc) · 1.63 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
{
"name": "bookshelf",
"version": "0.7.1",
"description": "A lightweight ORM for PostgreSQL, MySQL, and SQLite3",
"main": "bookshelf.js",
"scripts": {
"jshint": "jshint bookshelf.js lib/*",
"test": "mocha -b -t 5000 --check-leaks -R spec test/index.js",
"release:patch": "npm run jshint && npm test && gulp build && gulp bump --type patch && gulp release",
"release:minor": "npm run jshint && npm test && gulp build && gulp bump --type minor && gulp release"
},
"homepage": "http://bookshelfjs.org",
"repository": {
"type": "git",
"url": "https://github.com/tgriesser/bookshelf.git"
},
"keywords": [
"orm",
"mysql",
"postgresql",
"sqlite",
"datamapper",
"active record"
],
"dependencies": {
"backbone": "1.1.0",
"inflection": "~1.3.5",
"trigger-then": "0.3.x",
"bluebird": "~2.0.5",
"lodash": ">=2.0.0",
"simple-extend": "0.1.0",
"inherits": "~2.0.1",
"semver": "~2.3.0",
"create-error": "~0.3.1"
},
"devDependencies": {
"minimist": "~0.0.9",
"through": "^2.3.4",
"browserify": "^4.0.0",
"gulp": "^3.6.2",
"gulp-bump": "^0.1.8",
"gulp-git": "^0.4.2",
"gulp-shell": "^0.2.5",
"knex": "0.6.10",
"mocha": "~1.20.1",
"mysql": "~2.3.2",
"pg": "~3.3.0",
"sqlite3": "~2.2.3",
"underscore.string": "~2.3.1",
"chai-as-promised": "~4.1.0",
"chai": "~1.9.1",
"sinon-chai": "~2.5.0",
"sinon": "~1.10.2",
"node-uuid": "~1.4.1",
"jshint": "~2.5.1"
},
"author": {
"name": "Tim Griesser",
"web": "https://github.com/tgriesser"
},
"license": "MIT",
"readmeFilename": "README.md"
}