forked from eclipse-iofog/Controller
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
124 lines (124 loc) · 3.37 KB
/
package.json
File metadata and controls
124 lines (124 loc) · 3.37 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
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
{
"name": "iofogcontroller",
"version": "1.2.2",
"description": "ioFog Controller project for Eclipse IoFog @ iofog.org \\nCopyright (c) 2018 Edgeworx, Inc.",
"main": "./src/main.js",
"author": "Saeid Baghbidi",
"contributors": [
"Kilton Hopkins <kilton@edgeworx.io>",
"Saeid Baghbidi",
"Alexandre de Wergifosse",
"Pavel Kazlou",
"Egor Krylovich",
"Iryna Laryionava",
"Maryna Lipnitskaya",
"Dmitriy Kudasov",
"Dmitry Stolbunov",
"Darya Busel",
"Alexander Shpak",
"Kate Lukashick",
"Eugene Pankov",
"Maksim Chepelev",
"Tetiana Yatsiuk",
"Sergey Valevich"
],
"license": {
"type": "EPL-2.0",
"url": "https://www.eclipse.org/legal/epl-v20.html"
},
"bugs": {
"email": "edgemaster@iofog.org"
},
"standard": {
"ignore": [
"test/**/*.js"
]
},
"homepage": "https://www.iofog.org",
"repository": {
"type": "git",
"url": "https://github.com/ioFog/Controller"
},
"scripts": {
"prestart": "npm run lint",
"start": "node scripts/scripts-api.js start",
"prestart-dev": "npm run lint",
"start-dev": "node scripts/scripts-api.js start-dev",
"prebuild": "npm run lint",
"build": "node scripts/scripts-api.js init",
"preuninstall": "node scripts/scripts-api.js preuninstall",
"postinstall": "node scripts/scripts-api.js postinstall",
"lint": "npm run standard",
"standard": "./node_modules/.bin/standard",
"snyk": "./node_modules/.bin/snyk monitor",
"automatic-release": "automatic-release",
"pretest": "npm run lint",
"test": "node scripts/scripts-api.js test",
"prepostman_test": "npm run lint",
"postman_test": "node scripts/scripts-api.js postmantest",
"precli-tests": "npm run lint",
"cli-tests": "node scripts/scripts-api.js cli-tests",
"precoverage": "npm run lint",
"coverage": "node scripts/scripts-api.js coverage",
"prepare": "npm run lint"
},
"preferGlobal": true,
"bin": {
"iofog-controller": "src/main.js"
},
"dependencies": {
"@iofog/ecn-viewer": "1.0.4",
"@sentry/node": "4.5.3",
"body-parser": "1.18.3",
"child_process": "1.0.2",
"command-line-args": "5.0.2",
"command-line-usage": "5.0.5",
"concurrent-queue": "7.0.2",
"cookie-parser": "1.4.3",
"cors": "2.8.5",
"daemonize2": "0.4.2",
"ejs": "2.6.1",
"express": "4.16.4",
"formidable": "1.2.1",
"ftp": "0.3.10",
"helmet": "3.15.0",
"jsonschema": "1.2.4",
"moment": "2.24.0",
"morgan": "1.9.1",
"nconf": "0.10.0",
"newman": "4.5.1",
"nodemailer": "5.1.1",
"nodemailer-smtp-transport": "2.7.4",
"os": "0.1.1",
"path": "0.12.7",
"portscanner": "2.2.0",
"qs": "6.6.0",
"request-promise": "4.2.4",
"retry-as-promised": "3.1.0",
"semver": "5.6.0",
"sequelize": "4.42.0",
"sequelize-cli": "5.5.0",
"sqlite3": "4.0.6",
"string-format": "2.0.0",
"umzug": "2.2.0",
"underscore": "1.9.1",
"winston": "3.1.0",
"xss-clean": "0.1.1"
},
"devDependencies": {
"acorn": "6.1.1",
"automatic-release": "1.1.1",
"bdd-lazy-var": "2.5.2",
"chai": "4.2.0",
"chai-as-promised": "7.1.1",
"chai-http": "4.2.1",
"eslint": "5.14.1",
"eslint-config-google": "0.12.0",
"mocha": "5.2.0",
"nyc": "14.1.1",
"sinon": "7.2.3",
"sinon-chai": "3.3.0",
"snyk": "1.193.2",
"standard": "12.0.1"
}
}