forked from FlowFuse/device-agent
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
55 lines (55 loc) · 1.78 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
{
"name": "@flowforge/flowforge-device-agent",
"version": "1.9.4",
"description": "An Edge Agent for running Node-RED instances deployed from the FlowForge Platform",
"main": "index.js",
"repository": {
"type": "git",
"url": "https://github.com/flowforge/flowforge-device-agent.git"
},
"bugs": {
"url": "https://github.com/flowforge/flowforge-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/lib/**/*_spec.js",
"test:frontend": "mocha test/unit/frontend/**/*.spec.js"
},
"bin": {
"flowforge-device-agent": "./index.js"
},
"keywords": [
"flowforge",
"node-red"
],
"author": "FlowForge Inc.",
"license": "Apache-2.0",
"dependencies": {
"@flowforge/nr-theme": "^1.8.0",
"command-line-args": "^5.2.1",
"command-line-usage": "^6.1.3",
"got": "^11.8.6",
"mqtt": "^4.3.7",
"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-node": "^11.1.0",
"mocha": "^10.0.0",
"should": "^13.2.3",
"sinon": "^14.0.0"
},
"engines": {
"node": ">=14.x"
}
}