-
Notifications
You must be signed in to change notification settings - Fork 10
/
Copy pathpackage.json
46 lines (46 loc) · 1.02 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
{
"name": "knexnest",
"version": "1.0.0",
"description": "Given a Knex select object will provide a hyrdated object using promises.",
"keywords": [
"Hydration",
"Tabular Data",
"Arrays",
"Table",
"Object",
"Nested",
"Knex",
"Knex.js",
"Postgres",
"SQLite"
],
"license": "MIT",
"main": "knexnest.js",
"scripts": {
"coverage": "nyc jasmine",
"coverage:travis": "nyc npm run test:travis",
"coveralls": "nyc report --reporter=text-lcov | coveralls",
"test": "jasmine",
"test:travis": "jasmine && node test/postgres.js",
"lint": "eslint knexnest.js spec/**/*.js"
},
"repository": {
"type": "git",
"url": "[email protected]:CoursePark/KnexNest.git"
},
"engine": {
"node": ">=0.12"
},
"dependencies": {
"knex": "^0.14.6",
"nesthydrationjs": "^1.0.5"
},
"devDependencies": {
"coveralls": "^3.0.1",
"eslint": "^4.19.1",
"jasmine": "^3.1.0",
"nyc": "^11.7.3",
"pg": "^7.4.3"
},
"author": "Bluedrop Peformance Learning"
}