-
Notifications
You must be signed in to change notification settings - Fork 9
Expand file tree
/
Copy pathpackage.json
More file actions
77 lines (77 loc) · 2.36 KB
/
package.json
File metadata and controls
77 lines (77 loc) · 2.36 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
{
"name": "@flowfuse/device-agent",
"version": "3.8.2",
"description": "An Edge Agent for running Node-RED instances deployed from the FlowFuse Platform",
"exports": {
"./libraryPlugin": "./lib/plugins/libraryPlugin.js",
"./auditLogger": "./lib/auditLogger/index.js",
"./adminAuth": "./lib/auth/adminAuth.js"
},
"main": "index.js",
"repository": {
"type": "git",
"url": "https://github.com/FlowFuse/device-agent.git"
},
"bugs": {
"url": "https://github.com/FlowFuse/device-agent/issues"
},
"scripts": {
"start": "node index.js",
"dev": "nodemon index.js",
"lint": "eslint -c eslint.config.mjs",
"lint:fix": "eslint -c eslint.config.mjs --fix",
"test": "npm run test:lib && npm run test:frontend",
"test:lib": "mocha 'test/unit/**/*_spec.js'",
"test:frontend": "mocha 'test/unit/frontend/**/*.spec.js'"
},
"bin": {
"flowforge-device-agent": "./index.js",
"flowfuse-device-agent": "./index.js"
},
"keywords": [
"flowfuse",
"node-red"
],
"author": "FlowFuse Inc.",
"license": "Apache-2.0",
"dependencies": {
"@flowfuse/nr-theme": "^1.8.0",
"@inquirer/confirm": "^5.1.9",
"@inquirer/select": "^4.2.0",
"command-line-args": "^6.0.1",
"command-line-usage": "^7.0.3",
"express-session": "^1.18.0",
"got": "^11.8.6",
"http-proxy-agent": "^7.0.2",
"https-proxy-agent": "^7.0.4",
"memorystore": "^1.6.7",
"mnemonist": "^0.40.3",
"mqtt": "^5.10.1",
"parse-prometheus-text-format": "^1.1.1",
"passport": "0.6.0",
"passport-oauth2": "^1.6.1",
"prom-client": "^15.1.3",
"proxy-from-env": "^1.1.0",
"semver": "^7.3.8",
"ws": "^8.13.0",
"yaml": "^2.1.1",
"yoctocolors-cjs": "^2.1.2"
},
"devDependencies": {
"@eslint/js": "^9.39.2",
"aedes": "^0.49.0",
"aedes-server-factory": "^0.2.1",
"eslint": "^9.39.2",
"eslint-plugin-no-only-tests": "^3.3.0",
"globals": "^16.5.0",
"mocha": "^10.0.0",
"neostandard": "^0.12.2",
"proxy": "^2.1.1",
"rewire": "^7.0.0",
"should": "^13.2.3",
"sinon": "^14.0.0"
},
"engines": {
"node": ">=18.x"
}
}