-
Notifications
You must be signed in to change notification settings - Fork 33
/
package.json
143 lines (143 loc) · 3.83 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
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
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
{
"name": "@iofog/iofogcontroller",
"version": "3.0.4",
"description": "ioFog Controller project for Eclipse IoFog @ iofog.org \\nCopyright (c) 2018 Edgeworx, Inc.",
"main": "./src/main.js",
"author": "Saeid Baghbidi",
"contributors": [
"Kilton Hopkins <[email protected]>",
"Saeid Rezaei 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": "EPL-2.0",
"bugs": {
"email": "[email protected]"
},
"standard": {
"ignore": [
"test/**/*.js",
"src/lib/**/*.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",
"stop-dev": "node src/main.js stop",
"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",
"semantic-release": "semantic-release",
"pretest": "npm run lint",
"test": "node scripts/run-test.js test",
"prepostman_test": "npm run lint",
"postman_test": "node scripts/run-test.js postmantest",
"precli-tests": "npm run lint",
"cli-tests": "node scripts/run-test.js cli-tests",
"precoverage": "npm run lint",
"coverage": "node scripts/run-test.js coverage",
"prepare": "npm run lint",
"swagger": "./generate-swagger.sh"
},
"preferGlobal": true,
"bin": {
"iofog-controller": "src/main.js"
},
"dependencies": {
"@iofog/ecn-viewer": "3.0.2",
"axios": "1.0.0-alpha.1",
"body-parser": "^1.20.1",
"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": "3.1.7",
"express": "4.17.3",
"formidable": "1.2.1",
"ftp": "0.3.10",
"helmet": "3.21.2",
"is-elevated": "3.0.0",
"js-yaml": "3.14.1",
"jsonschema": "1.2.5",
"minimatch": "3.1.2",
"moment": "2.29.4",
"moment-timezone": "0.5.38",
"morgan": "1.9.1",
"multer": "1.4.5-lts.1",
"nconf": "0.12.0",
"nodemailer": "6.7.3",
"nodemailer-smtp-transport": "2.4.2",
"os": "0.1.1",
"path": "0.12.7",
"pino": "6.6.1",
"pino-std-serializers": "2.5.0",
"portscanner": "2.2.0",
"qs": "6.10.3",
"request": "2.88.0",
"request-promise": "4.2.4",
"retry-as-promised": "3.1.0",
"semantic-release": "19.0.3",
"semver": "5.6.0",
"sequelize": "6.29.0",
"sqlite3": "^5.1.5",
"string-format": "2.0.0",
"swagger-ui-express": "^4.6.2",
"umzug": "2.2.0",
"underscore": "1.13.1",
"xss-clean": "0.1.1"
},
"devDependencies": {
"acorn": "7.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": "9.2.2",
"mocha-junit-reporter": "2.0.0",
"newman": "5.3.2",
"newman-reporter-junitfull": "1.1.1",
"nyc": "15.0.0",
"sequelize-cli": "5.5.0",
"sinon": "7.5.0",
"sinon-chai": "3.3.0",
"snyk": "^1.1064.0",
"standard": "12.0.1"
},
"files": [
"/scripts",
"/src",
"/test",
"/docs",
".eslintrc.js",
".jshintrc",
".snyk"
]
}