forked from Vincit/objection.js
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
123 lines (123 loc) · 3.92 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
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
{
"name": "objection",
"version": "2.1.2",
"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/**\"",
"test-travis": "npm run eslint && nyc mocha --slow 100 --timeout 60000 --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-opt": "mocha --slow 10 --timeout 15000 --reporter spec --recursive tests --bail --trace_opt --trace_deopt --exclude \"tests/unit/relations/files/**\"",
"test-debug": "mocha --slow 10 --timeout 15000 --reporter spec --recursive tests --inspect-brk --exclude \"tests/unit/relations/files/**\"",
"test-sqlite": "cross-env DATABASES=sqlite3 mocha --slow 10 --timeout 15000 --reporter spec --recursive tests --exclude \"tests/unit/relations/files/**\"",
"test-typings": "tsc",
"coveralls": "cat ./testCoverage/lcov.info | ./node_modules/coveralls/bin/coveralls.js",
"perf": "mocha --slow 60000 --timeout 60000 --reporter spec --recursive perf",
"perf-debug": "mocha --slow 60000 --timeout 60000 --reporter spec --inspect-brk perf",
"perf-opt": "mocha --slow 60000 --timeout 60000 --reporter spec --recursive perf --trace_opt --trace_deopt",
"prettier": "prettier --write \"{examples,lib,tests,typings,doc}/**/*.{js,ts,md}\"",
"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": ">=8.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": "^6.10.2",
"db-errors": "^0.2.3"
},
"peerDependencies": {
"knex": "0.x"
},
"devDependencies": {
"@types/node": "^12.12.12",
"chai": "^4.2.0",
"chai-subset": "^1.6.0",
"coveralls": "^3.0.8",
"cross-env": "^6.0.3",
"eslint": "^6.7.0",
"eslint-plugin-prettier": "^3.1.1",
"expect.js": "^0.3.1",
"fs-extra": "^8.1.0",
"glob": "^7.1.6",
"husky": "^3.1.0",
"knex": "0.20.4",
"lint-staged": "^9.4.3",
"mocha": "^6.2.2",
"mysql": "^2.17.1",
"nyc": "^14.1.1",
"pg": "^7.14.0",
"prettier": "1.19.1",
"sqlite3": "^4.1.0",
"typescript": "^3.7.4",
"vuepress": "1.2.0"
},
"nyc": {
"description": "test coverage",
"exclude": [
"lib/queryBuilder/parsers/jsonFieldExpressionParser.js",
"lib/queryBuilder/parsers/relationExpressionParser.js",
"testUtils/*",
"lib/utils/clone.js"
],
"reporter": [
"lcov",
"text"
],
"report-dir": "./testCoverage"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"*.js": [
"prettier --write",
"eslint --fix",
"git add"
],
"*.{md,yml,ts}": [
"prettier --write",
"git add"
]
}
}