-
Notifications
You must be signed in to change notification settings - Fork 8
/
Copy pathpackage.json
66 lines (66 loc) · 2.14 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
{
"name": "@flowfuse/device-agent",
"version": "3.0.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"
},
"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 .eslintrc \"*.js\" \"lib/**/*.js\" \"frontend/**/*.js\" \"frontend/**/*.html\" \"test/**/*.js\"",
"lint:fix": "eslint -c .eslintrc \"*.js\" \"lib/**/*.js\" \"frontend/**/*.js\" \"frontend/**/*.html\" \"test/**/*.js\" --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",
"command-line-args": "^5.2.1",
"command-line-usage": "^6.1.3",
"got": "^11.8.6",
"http-proxy-agent": "^7.0.2",
"https-proxy-agent": "^7.0.4",
"mqtt": "^5.10.1",
"proxy-from-env": "^1.1.0",
"semver": "^7.3.8",
"ws": "^8.13.0",
"yaml": "^2.1.1"
},
"devDependencies": {
"aedes": "^0.49.0",
"aedes-server-factory": "^0.2.1",
"eslint": "^8.25.0",
"eslint-config-standard": "^17.0.0",
"eslint-plugin-html": "^7.1.0",
"eslint-plugin-no-only-tests": "^3.1.0",
"eslint-plugin-node": "^11.1.0",
"mocha": "^10.0.0",
"proxy": "^2.1.1",
"rewire": "^7.0.0",
"should": "^13.2.3",
"sinon": "^14.0.0"
},
"engines": {
"node": ">=18.x"
}
}