forked from fortunejs/fortune
-
Notifications
You must be signed in to change notification settings - Fork 13
/
package.json
78 lines (78 loc) · 1.91 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
{
"name": "harvesterjs",
"description": "a library which makes it easy to construct a JSON-API compliant REST API (http://jsonapi.org/) with Nodejs and Mongodb",
"version": "3.1.2",
"license": "MIT",
"author": {
"name": "Kristof Sajdak",
"email": "[email protected]"
},
"contributors": [
{
"name": "Stephen Sebro",
"email": "[email protected]"
}
],
"homepage": "",
"repository": {
"type": "git",
"url": "https://github.com/agco/harvesterjs"
},
"scripts": {
"test": "mocha && npm run lint",
"lint": "eslint .",
"lint:fix": "eslint . --fix"
},
"main": "./lib/harvester.js",
"dependencies": {
"bluebird": "^2.9.27",
"body-parser": "~1.4.3",
"debounce-promise": "^3.0.1",
"debug": "^2.1.1",
"express": "~4.6.1",
"highland": "^2.5.1",
"http-as-promised": "^1.1.0",
"i": "~0.3.2",
"joi": "^6.4.3",
"lodash": "~3.7.0",
"longjohn": "^0.2.4",
"mkdirp": "~0.5.0",
"mongodb": "^2.2.26",
"mongoose": "4.10.8",
"node-uuid": "^1.4.3",
"throttle-function": "^0.1.0",
"tiny-sse": "git+https://github.com/agco/node-tiny-sse.git",
"underscore.string": "^2.4.0",
"agco-logger": "git+https://github.com/agco/agco-logger.git#c14fba9712968a0509bbf2c69c33a167a6cc1b07"
},
"devDependencies": {
"agco-event-source-stream": "^1.1.1",
"chai": "^1.10.0",
"chai-http": "^1.0.0",
"coveralls": "^2.11.2",
"eslint": "^3.18.0",
"eslint-plugin-node": "^4.2.2",
"istanbul": "^0.3.7",
"mocha": "3.4.2",
"mocha-lcov-reporter": "0.0.2",
"nock": "^0.56.0",
"profanity-util": "0.0.2",
"request-debug": "^0.1.1",
"should": "~4.0.4",
"sinon": "^1.17.6",
"sleep": "^6.1.0",
"supertest": "~0.13.0"
},
"engines": {
"node": "^12.13.0"
},
"keywords": [
"json",
"api",
"jsonapi",
"json-api",
"framework",
"rest",
"restful"
]
}