forked from Vincit/objection.js
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
84 lines (84 loc) · 2.56 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
{
"name": "objection",
"version": "0.9.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",
"test-travis": "npm run eslint && istanbul --config=.istanbul.yml cover _mocha -- --slow 100 --timeout 60000 --reporter spec --recursive tests && npm run test-typings",
"test-fast": "mocha --slow 10 --timeout 15000 --reporter spec --recursive tests --bail",
"test-opt": "mocha --slow 10 --timeout 15000 --reporter spec --recursive tests --bail --trace_opt --trace_deopt --trace_inlining",
"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-opt": "mocha --slow 60000 --timeout 60000 --reporter spec --recursive perf --trace_opt --trace_deopt --trace_inlining",
"prettier": "prettier --write 'examples/**/*.js' 'lib/**/*.js' 'tests/**/*.js'",
"eslint": "eslint --format codeframe 'examples/**/*.js' 'lib/**/*.js' 'tests/**/*.js'"
},
"publishConfig": {
"tag": "next"
},
"author": {
"name": "Sami Koskimäki",
"email": "sami.koskimaki@vincit.com",
"url": "https://github.com/koskimas"
},
"contributors": [
"Mikael Lepistö <mikael.lepisto@vincit.com> (https://github.com/elhigu)",
"Matthew McEachen <matthew-objection@photostructure.com> (https://github.com/mceachen)"
],
"repository": {
"type": "git",
"url": "git://github.com/vincit/objection.js.git"
},
"engines": {
"node": ">=4.0.0"
},
"keywords": [
"orm",
"knex",
"sql",
"query",
"postgresql",
"mysql",
"sqlite3"
],
"files": [
"README.md",
"LICENSE",
"lib/*",
"typings/*"
],
"types": "./typings/objection/index.d.ts",
"dependencies": {
"ajv": "^5.1.1",
"bluebird": "^3.5.0",
"lodash": "^4.17.4"
},
"peerDependencies": {
"knex": "0.x"
},
"devDependencies": {
"@types/knex": "^0.0.65",
"@types/node": "^8.0.53",
"babel-eslint": "^8.0.1",
"chai": "^4.1.2",
"chai-subset": "^1.6.0",
"coveralls": "^2.13.1",
"eslint": "^4.10.0",
"eslint-plugin-prettier": "^2.3.1",
"expect.js": "^0.3.1",
"fs-extra": "3.0.1",
"glob": "^7.1.1",
"istanbul": "^0.4.5",
"knex": "0.x",
"mocha": "^3.4.1",
"mysql": "^2.13.0",
"pg": "^6.2.2",
"prettier": "^1.7.4",
"sqlite3": "3.1.8",
"tslint": "^5.8.0",
"typescript": "^2.6.1"
}
}