forked from bookshelf/bookshelf
-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
90 lines (90 loc) · 2.03 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
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
{
"name": "bookshelf",
"version": "1.2.0",
"description": "A lightweight ORM for PostgreSQL, MySQL, and SQLite3",
"main": "bookshelf.js",
"scripts": {
"format": "prettier --write \"{lib,scripts,test}/**/*.js\"",
"lint": "eslint bookshelf.js lib/",
"cover": "npm run lint && nyc mocha --check-leaks -t 10000 -b",
"test": "npm run lint && mocha --check-leaks -t 10000 -b",
"jsdoc": "./scripts/jsdoc.sh",
"postpublish": "./scripts/postpublish.sh"
},
"homepage": "https://bookshelfjs.org",
"repository": {
"type": "git",
"url": "https://github.com/bookshelf/bookshelf.git"
},
"keywords": [
"orm",
"mysql",
"postgresql",
"sqlite",
"datamapper",
"active record"
],
"dependencies": {
"bluebird": "^3.7.2",
"create-error": "~0.3.1",
"inflection": "^1.12.0",
"lodash": "^4.17.15"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"*.{js,json}": [
"prettier --write",
"git add"
]
},
"devDependencies": {
"bookshelf-jsdoc-theme": "^1.0.1",
"chai": "^4.2.0",
"eslint": "^6.8.0",
"eslint-config-prettier": "^6.10.0",
"eslint-plugin-prettier": "^3.1.2",
"husky": "^3.0.5",
"jsdoc": "^3.6.3",
"knex": "~0.21.0",
"lint-staged": "^9.2.5",
"mocha": "^7.1.2",
"mysql": "^2.18.1",
"nyc": "^15.0.0",
"pg": "^8.0.3",
"prettier": "^1.18.2",
"sinon": "^8.1.1",
"sinon-chai": "^3.3.0",
"sqlite3": "^4.1.1",
"uuid": "^3.3.3"
},
"peerDependencies": {
"knex": ">=0.15.0 <0.22.0"
},
"author": {
"name": "Tim Griesser",
"url": "https://github.com/tgriesser"
},
"contributors": [
{
"name": "Edward Greve",
"url": "https://github.com/anyong"
},
{
"name": "Rhys van der Waerden",
"url": "https://github.com/rhys-vdw"
},
{
"name": "Ricardo Graça",
"url": "https://github.com/ricardograca"
}
],
"license": "MIT",
"readmeFilename": "README.md",
"engines": {
"node": ">=6"
}
}