forked from cyjake/leoric
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
44 lines (44 loc) · 1.08 KB
/
package.json
File metadata and controls
44 lines (44 loc) · 1.08 KB
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
{
"name": "leoric",
"version": "0.4.2",
"description": "JavaScript Object-relational mapping alchemy",
"main": "index.js",
"scripts": {
"jsdoc": "rm -rf docs/api && jsdoc -c .jsdoc.json -d docs/api -t node_modules/@cara/minami",
"pretest": "./test/prepare.sh",
"test": "DEBUG=leoric mocha --exit test/test.*.js",
"coveralls": "nyc mocha --exit test/test.*.js && nyc report --reporter=text-lcov | coveralls"
},
"repository": {
"type": "git",
"url": "https://github.com/cyjake/leoric.git"
},
"keywords": [
"mysql",
"orm",
"postgresql",
"query builder"
],
"author": "cyjake (http://cyj.me)",
"license": "BSD-3-Clause",
"engines": {
"node": ">= 10.0.0"
},
"dependencies": {
"debug": "^3.1.0",
"deep-equal": "^1.0.1",
"pluralize": "^7.0.0",
"sqlstring": "^2.3.0"
},
"devDependencies": {
"@cara/minami": "^1.2.3",
"coveralls": "^3.0.2",
"expect.js": "^0.3.1",
"jsdoc": "^3.5.5",
"mocha": "^5.2.0",
"mysql": "^2.15.0",
"mysql2": "^1.5.1",
"nyc": "^13.1.0",
"pg": "^7.6.0"
}
}