forked from Vincit/objection.js
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
68 lines (68 loc) · 1.81 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
{
"name": "objection",
"version": "0.4.0",
"description": "An SQL-friendly ORM for Node.js",
"main": "lib/objection.js",
"license": "MIT",
"scripts": {
"build": "node build",
"test": "npm run build && istanbul --config=.istanbul.yml cover _mocha -- --slow 10 --timeout 5000 --reporter spec --recursive tests",
"perf": "mocha --slow 60000 --timeout 60000 --reporter spec --recursive perf",
"test-bail": "mocha --slow 10 --timeout 5000 --reporter spec --recursive tests --bail",
"coveralls": "cat ./test-coverage/lcov.info | ./node_modules/coveralls/bin/coveralls.js",
"prepublish": "npm run build"
},
"author": {
"name": "Sami Koskimäki",
"email": "[email protected]",
"url": "https://github.com/koskimas"
},
"contributors": [
"Mikael Lepistö <[email protected]> (https://github.com/elhigu)"
],
"repository": {
"type": "git",
"url": "git://github.com/vincit/objection.js.git"
},
"keywords": [
"orm",
"knex",
"sql",
"query",
"postgresql",
"mysql",
"sqlite3"
],
"files": [
"README.md",
"LICENSE",
"lib/*",
"src/*"
],
"dependencies": {
"babel-runtime": "^6.3.19",
"bluebird": "^3.0.5",
"lodash": "^3.9.0",
"tv4": "^1.1.9",
"tv4-formats": "^1.0.0"
},
"devDependencies": {
"babel-core": "^6.3.17",
"babel-plugin-transform-decorators-legacy": "^1.3.3",
"babel-plugin-transform-runtime": "^6.3.13",
"babel-preset-es2015": "^6.3.13",
"babel-preset-stage-0": "^6.3.13",
"coveralls": "^2.11.2",
"expect.js": "^0.3.1",
"fs-extra": "^0.26.4",
"glob": "^6.0.1",
"grunt": "^0.4.5",
"grunt-jsdoc": "^1.0.0",
"istanbul": "^0.4.0",
"knex": "^0.9.0",
"mocha": "^2.3.4",
"mysql": "^2.7.0",
"pg": "^4.4.0",
"sqlite3": "^3.0.8"
}
}