forked from Vincit/objection.js
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
79 lines (79 loc) · 2.24 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
{
"name": "objection",
"version": "3.0.1",
"description": "An SQL-friendly ORM for Node.js",
"main": "lib/objection.js",
"license": "MIT",
"scripts": {
"test": "npm run eslint && mocha --slow 10 --timeout 15000 --reporter spec --recursive tests --exclude \"tests/unit/relations/files/**\" && npm run test:typings",
"test:fast": "mocha --slow 10 --timeout 15000 --reporter spec --recursive tests --bail --exclude \"tests/unit/relations/files/**\"",
"test:typings": "tsc",
"prettier": "prettier --write \"{examples,lib,tests,typings,doc}/**/*.{js,ts}\"",
"eslint": "eslint --format codeframe \"examples/**/*.js\" \"lib/**/*.js\" \"tests/**/*.js\"",
"docs:dev": "vuepress dev doc",
"docs:build": "vuepress build doc"
},
"publishConfig": {
"tag": "next"
},
"author": {
"name": "Sami Koskimäki",
"email": "[email protected]",
"url": "https://github.com/koskimas"
},
"contributors": [
"Sami Koskimäki <[email protected]> (https://github.com/koskimas)",
"Mikael Lepistö <[email protected]> (https://github.com/elhigu)",
"Matthew McEachen <[email protected]> (https://github.com/mceachen)",
"Jürg Lehni <[email protected]> (https://github.com/lehni)",
"Igor Savin <[email protected]> (https://github.com/kibertoad)"
],
"repository": {
"type": "git",
"url": "git://github.com/vincit/objection.js.git"
},
"engines": {
"node": ">=12.0.0"
},
"keywords": [
"orm",
"knex",
"sql",
"query",
"query builder",
"postgresql",
"mysql",
"sqlite3"
],
"files": [
"README.md",
"LICENSE",
"lib/*",
"typings/*"
],
"types": "./typings/objection/index.d.ts",
"dependencies": {
"ajv": "^8.6.2",
"db-errors": "^0.2.3"
},
"peerDependencies": {
"knex": ">=0.95.0"
},
"devDependencies": {
"@types/node": "^16.11.6",
"chai": "^4.3.4",
"chai-subset": "^1.6.0",
"eslint": "^8.1.0",
"eslint-formatter-codeframe": "^7.32.1",
"eslint-plugin-prettier": "^4.0.0",
"expect.js": "^0.3.1",
"knex": "0.95.13",
"mocha": "^9.1.3",
"mysql": "^2.18.1",
"pg": "^8.7.1",
"prettier": "2.4.1",
"sqlite3": "^5.0.2",
"typescript": "^4.5.4",
"vuepress": "1.8.2"
}
}