-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
59 lines (59 loc) · 1.49 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
{
"name": "@loke/orm",
"version": "2.0.0",
"description": "Sequelize based ORM for MySql and Postgres",
"main": "lib/index.js",
"scripts": {
"build-doc": "mkdir -p out; spec-md doc/index.md > out/index.html",
"lint": "eslint --ignore-path .gitignore .",
"lint-fix": "eslint --fix --ignore-path .gitignore .",
"test": "mocha --no-exit --slow 10 --recursive -r test/support/env --check-leaks --bail test/",
"coverage": "nyc --reporter=text mocha --no-exit --slow 10 --recursive -r test/support/env --check-leaks --bail test/"
},
"engines": {
"node": ">=12.0.0"
},
"author": "LOKE",
"license": "MIT",
"devDependencies": {
"@types/clone": "^2.1.1",
"eslint": "^7.32.0",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-prettier": "^3.4.1",
"expect": "^1.9.0",
"mocha": "^9.2.2",
"mysql2": "^3.1.2",
"nyc": "^15.1.0",
"pg": "^8.9.0",
"prettier": "^2.7.1",
"sequelize": "^6.28.0",
"spec-md": "^3.0.2"
},
"peerDependencies": {
"mysql2": ">=2 <=3",
"pg": "8.x",
"sequelize": "6.x"
},
"dependencies": {
"clone": "^2.1.2",
"pg-query-stream": "^4.3.0",
"through2": "^4.0.2"
},
"directories": {
"doc": "doc",
"test": "test"
},
"repository": {
"type": "git",
"url": "git+https://github.com/LOKE/orm.git"
},
"keywords": [
"mysql",
"postgres",
"orm"
],
"bugs": {
"url": "https://github.com/LOKE/orm/issues"
},
"homepage": "https://github.com/LOKE/orm#readme"
}