-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
52 lines (52 loc) · 1.31 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
{
"name": "@json-api/knex-adapter",
"version": "1.0.0-beta.10",
"description": "Knex adapter for the json-api library",
"main": "build/src/knex-adapter.js",
"repository": {
"type": "git",
"url": "git://github.com/carlbennettnz/json-api-knex-adapter.git"
},
"scripts": {
"pretest": "knex migrate:latest",
"test": "NODE_ENV=test mocha --require ts-node/register 'test/integration/**/*.ts'",
"build": "tsc",
"prepublishOnly": "npm run build"
},
"author": {
"name": "Carl Bennett",
"email": "[email protected]"
},
"license": "MIT",
"peerDependencies": {
"json-api": "^3.0.0-rc.4"
},
"files": [
"build/**/*"
],
"devDependencies": {
"@types/chai": "^4.1.2",
"@types/knex": "^0.14.9",
"@types/lodash": "^4.14.106",
"@types/mocha": "^5.0.0",
"@types/mongoose": "^5.2.3",
"@types/node": "^9.6.0",
"@types/ramda": "^0.25.21",
"@types/supertest": "^2.0.4",
"chai": "^4.1.2",
"express": "^4.16.2",
"json-api": "3.0.0-rc.4",
"knex": "^0.14.6",
"mocha": "^5.0.5",
"mongoose": "^5.2.6",
"pg": "^7.4.3",
"supertest": "github:carlbennettnz/supertest#b59db30",
"testdouble": "^3.6.0",
"ts-node": "^5.0.1",
"typescript": "^2.8.1"
},
"dependencies": {
"debug": "^3.1.0",
"lodash": "^4.17.5"
}
}