-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
54 lines (54 loc) · 1.51 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
{
"name": "@flowfuse/nr-file-nodes",
"version": "0.0.8",
"description": "Node-RED file nodes packaged for FlowFuse",
"main": "index.js",
"scripts": {
"test": "npm run test:files && npm run test:memory",
"test:memory": "mocha 'test/memory_spec.js' --timeout 5000",
"test:files": "mocha 'test/file_spec.js' --timeout 5000",
"lint": "eslint -c .eslintrc *.js test/*.js",
"lint:fix": "eslint -c .eslintrc *.js test/*.js --fix"
},
"keywords": [
"FlowFuse",
"node-red",
"filesystem"
],
"node-red": {
"version": ">=3.0.0",
"nodes": {
"file": "file.js"
}
},
"repository": {
"type": "git",
"url": "git+https://github.com/FlowFuse/nr-file-nodes.git"
},
"author": {
"name": "FlowFuse Inc."
},
"bugs": {
"url": "https://github.com/FlowFuse/nr-file-nodes/issues"
},
"homepage": "https://github.com/FlowFuse/nr-file-nodes#readme",
"dependencies": {
"got": "11.8.5",
"iconv-lite": "0.6.3"
},
"engines": {
"node": ">=16.x"
},
"devDependencies": {
"@flowforge/file-server": "^0.0.5",
"eslint": "^8.25.0",
"eslint-config-standard": "^17.0.0",
"eslint-plugin-no-only-tests": "^3.1.0",
"fs-extra": "^10.1.0",
"mocha": "^10.1.0",
"mocha-cli": "^1.0.1",
"node-red": "^3.1.0",
"node-red-node-test-helper": "^0.3.0",
"sinon": "^14.0.2"
}
}