This repository was archived by the owner on Dec 5, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpackage.json
More file actions
62 lines (62 loc) · 1.47 KB
/
Copy pathpackage.json
File metadata and controls
62 lines (62 loc) · 1.47 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
{
"name": "manager",
"version": "1.17.0",
"description": "Manages Casa Lightning Node system docker images",
"author": "Casa, INC.",
"scripts": {
"lint": "eslint",
"start": "node ./bin/www",
"test": "mocha --file test.setup 'test/**/*.js'",
"coverage": "nyc --all mocha --file test.setup 'test/**/*.js'"
},
"dependencies": {
"axios": "^0.18.0",
"bcrypt": "^3.0.1",
"body-parser": "^1.18.2",
"child_process": "^1.0.2",
"continuation-local-storage": "^3.2.1",
"cors": "^2.8.5",
"debug": "^2.6.1",
"decamelize-keys": "^1.1.0",
"dockerode": "^2.5.5",
"express": "^4.16.1",
"fs": "0.0.1-security",
"jsonschema": "^1.2.4",
"md5-file": "^4.0.0",
"module-alias": "^2.1.0",
"morgan": "^1.9.0",
"node-rsa": "^1.0.1",
"npm": "^5.6.0",
"passport": "^0.4.0",
"passport-http": "^0.3.0",
"passport-jwt": "^4.0.0",
"q": "^1.5.1",
"request": "^2.87.0",
"request-promise": "^4.2.2",
"validator": "^10.8.0",
"winston": "^3.0.0-rc5",
"winston-daily-rotate-file": "^3.1.3"
},
"devDependencies": {
"babel-eslint": "^8.2.6",
"chai": "^4.1.2",
"chai-http": "^4.2.0",
"eslint": "^5.3.0",
"mocha": "^5.2.0",
"nyc": "^13.2.0",
"sinon": "^6.1.4"
},
"nyc": {
"exclude": [
"test",
"test.setup.js",
"coverage/lcov-report/*"
],
"sourceMap": false,
"reporter": [
"lcov",
"text-summary"
],
"cache": "false"
}
}