forked from bookshelf/bookshelf
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
52 lines (52 loc) · 1.27 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": "bookshelf",
"version": "0.5.7",
"description": "A lightweight ORM for PostgreSQL, MySQL, and SQLite3, influenced by Backbone.js",
"main": "bookshelf.js",
"scripts": {
"test": "mocha -R spec test/index.js",
"doc": "groc -o docs --verbose dialects/base/collection.js dialects/**/*.js plugins/*.js bookshelf.js"
},
"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.0.0",
"inflection": "~1.2.x",
"when": "~2.4.0",
"trigger-then": "~0.1.1",
"underscore": "~1.5.1",
"knex": "~0.4.6"
},
"devDependencies": {
"mocha": "~1.13.0",
"mysql": "~2.0.0-alpha7",
"pg": "~2.6.2",
"sqlite3": "~2.1.7",
"objectdump": "~0.3.0",
"underscore.string": "~2.3.1",
"grunt": "~0.4.1",
"grunt-release": "~0.5.1",
"mocha-as-promised": "~1.4.0",
"chai-as-promised": "~3.3.1",
"chai": "~1.8.0",
"sinon-chai": "~2.4.0",
"sinon": "~1.7.3"
},
"author": {
"name": "Tim Griesser",
"web": "https://github.com/tgriesser"
},
"license": "MIT",
"readmeFilename": "README.md"
}