forked from bookshelf/bookshelf
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
69 lines (69 loc) · 1.85 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
{
"name": "bookshelf",
"version": "0.9.5",
"description": "A lightweight ORM for PostgreSQL, MySQL, and SQLite3",
"main": "bookshelf.js",
"scripts": {
"clean": "rm -rf ./lib",
"dev": "babel -w -q -L -D ./src/ --out-dir ./lib/",
"build": "babel -q -L -D ./src/ --out-dir ./lib/",
"lint": "eslint bookshelf.js src/",
"cover": "npm run lint && istanbul cover _mocha -- --check-leaks -t 5000 -b -R spec test/index.js",
"test": "npm run lint && mocha --check-leaks -t 5000 -b test/index.js",
"jsdoc": "./scripts/jsdoc.sh"
},
"homepage": "http://bookshelfjs.org",
"repository": {
"type": "git",
"url": "git://github.com/tgriesser/bookshelf.git"
},
"keywords": [
"orm",
"mysql",
"postgresql",
"sqlite",
"datamapper",
"active record"
],
"dependencies": {
"bluebird": "^2.9.4",
"babel-runtime": "^6.6.1",
"chalk": "^1.0.0",
"create-error": "~0.3.1",
"inflection": "^1.5.1",
"inherits": "~2.0.1",
"lodash": "^3.8.0"
},
"devDependencies": {
"babel-cli": "^6.0.15",
"babel-eslint": "^5.0.0",
"babel-plugin-syntax-object-rest-spread": "^6.0.14",
"babel-plugin-transform-object-rest-spread": "^6.0.14",
"babel-plugin-transform-runtime": "^6.6.0",
"babel-preset-es2015": "^6.0.14",
"bookshelf-jsdoc-theme": "^0.1.2",
"chai": "~1.9.1",
"eslint": "2.2.0",
"istanbul": "^0.3.19",
"jsdoc": "^3.4.0",
"knex": "^0.11.0",
"minimist": "^1.1.0",
"mocha": "^2.0.1",
"mysql": "^2.5.2",
"node-uuid": "~1.4.1",
"pg": "^4.3.0",
"semver": "^5.0.3",
"sinon": "^1.11.1",
"sinon-chai": "^2.6.0",
"sqlite3": "^3.0.5"
},
"peerDependencies": {
"knex": ">=0.6.10 <0.12.0"
},
"author": {
"name": "Tim Griesser",
"web": "https://github.com/tgriesser"
},
"license": "MIT",
"readmeFilename": "README.md"
}