-
Notifications
You must be signed in to change notification settings - Fork 7
/
package.json
80 lines (80 loc) · 2.08 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
{
"name": "divaservices",
"version": "0.1.0",
"description": "DivaServices RESTFul Web Services for Document Image Analysis",
"main": "server.js",
"scripts": {
"build": "tsc",
"grunt": "grunt",
"start": "node ./bin/www",
"debug": "NODE_ENV=dev nodemon --inspect=9929 bin/www",
"test": "NODE_ENV=dev mocha tests/*Tests.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/lunactic/DIVAServices.git"
},
"keywords": [
"REST",
"DIA"
],
"author": "Marcel Wuersch",
"license": "LGPL-2.1",
"bugs": {
"url": "https://github.com/lunactic/DIVAServices/issues"
},
"homepage": "https://github.com/lunactic/DIVAServices#readme",
"engines": {
"node": "~6.9"
},
"dependencies": {
"archiver": "^2.0.0",
"body-parser": "^1.17.2",
"chai": "^4.1.0",
"chai-http": "^3.0.0",
"crypto": "0.0.3",
"dockerode": "2.5.0",
"express": "^4.15.3",
"express-ipfilter": "^0.3.1",
"fs-extra": "^4.0.0",
"jsonschema": "^1.1.1",
"lodash": "^4.17.4",
"log4js": "^2.2.0",
"manifesto.js": "^0.2.1",
"md5": "^2.2.1",
"mime": "^1.3.6",
"mocha": "^3.4.2",
"morgan": "^1.8.2",
"natural-compare-lite": "^1.4.0",
"nconf": "^0.8.4",
"object-hash": "^1.1.8",
"request": "^2.81.0",
"request-promise": "4.2.1",
"rmdir": "^1.2.0",
"sequest": "^0.10.0",
"tslint": "^5.5.0",
"typescript": "^2.4.1",
"unzipper": "^0.8.9"
},
"devDependencies": {
"@types/archiver": "^1.3.4",
"@types/body-parser": "1.16.4",
"@types/chai": "^4.0.1",
"@types/chai-http": "^3.0.0",
"@types/dockerode": "^2.4.3",
"@types/express": "^4.0.36",
"@types/fs-extra": "^3.0.3",
"@types/lodash": "^4.14.69",
"@types/log4js": "0.0.32",
"@types/md5": "^2.1.32",
"@types/mime": "1.3.1",
"@types/mocha": "^2.2.41",
"@types/morgan": "^1.7.32",
"@types/natural-sort": "0.0.19",
"@types/nconf": "0.0.34",
"@types/node": "^8.0.13",
"@types/object-hash": "^0.5.28",
"@types/request": "0.0.47",
"@types/request-promise": "^4.1.36"
}
}