-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
64 lines (64 loc) · 1.26 KB
/
package.json
File metadata and controls
64 lines (64 loc) · 1.26 KB
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
{
"name": "video_processing_server",
"version": "2.0.0",
"description": "Backend for communicating between video database and video processing algorithms",
"directories": {
"test": "tests"
},
"engineStrict": true,
"engines": {
"node": ">=11.10.1",
"npm": ">=6.8.0"
},
"scripts": {
"api": "nodemon src/API/index.js",
"manager": "node src/Process_Manager/index.js",
"clean": "rm -rf coverage package-lock.json",
"test": "jest",
"eslint": "eslint src/ tests/",
"coveralls": "cat ./coverage/lcov.info | coveralls"
},
"jest": {
"collectCoverage": true,
"coverageReporters": [
"text",
"html",
"lcov"
],
"setupFiles": [
"jest-date-mock"
]
},
"dependencies": {
"aws-sdk": "^2.408.0",
"bluebird": "^3.5.3",
"body-parser": "^1.18.3",
"express": "^4.16.4",
"lodash": "^4.17.11",
"mongodb": "^2.2.5",
"mongodb-core": "~1.0",
"node-fetch": "^2.3.0"
},
"devDependencies": {
"coveralls": "^3.0.6",
"eslint": "^5.15.3",
"jest": "^24.1.0",
"jest-date-mock": "^1.0.7",
"nodemon": "^1.18.10",
"sinon": "^7.2.5"
},
"keywords": [
"Video Processing",
"REST API",
"Backend",
"Async"
],
"contributors": [
"houtanf",
"Jeffry Sandoval",
"Larry Carranco",
"Omar Achkar",
"Derrick Ellis"
],
"license": "MIT"
}