-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
49 lines (49 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
{
"name": "bookshelf",
"version": "0.10.1",
"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",
"gh-pages": "./scripts/gh-pages.sh"
},
"homepage": "http://bookshelfjs.org",
"repository": {
"type": "git",
"url": "git://github.com/tgriesser/bookshelf.git"
},
"keywords": [
"orm",
"mysql",
"postgresql",
"sqlite",
"datamapper",
"active record"
],
"dependencies": {
"babel-runtime": "^6.26.0",
"bluebird": "^3.4.3",
"chalk": "^1.0.0",
"create-error": "~0.3.1",
"inflection": "^1.5.1",
"inherits": "~2.0.1",
"lodash": "^4.13.1"
},
"devDependencies": {
},
"peerDependencies": {
"knex": ">=0.6.10 <0.13.0"
},
"author": {
"name": "Tim Griesser",
"web": "https://github.com/tgriesser"
},
"license": "MIT",
"readmeFilename": "README.md"
}