-
-
Notifications
You must be signed in to change notification settings - Fork 6
/
package.json
73 lines (73 loc) · 1.68 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
{
"name": "node-red-contrib-fs",
"version": "1.4.1",
"description": "Node-Red Node that handles the host filing system.",
"scripts": {
"npmtags": "npm dist-tag ls node-red-contrib-uibuilder",
"npmtagnext": "npm dist-tag add node-red-contrib-uibuilder@$npm_package_version next",
"gittags": "git tag",
"gittag": "git tag -a v$npm_package_version",
"gitpushtags": "git push origin --tags"
},
"dependencies": {
"readdirp": "^3.4.0"
},
"author": {
"name": "Julian Knight",
"url": "https://github.com/totallyinformation"
},
"contributors": [
{
"name": "Andreas Brain",
"url": "https://github.com/abrain"
},
{
"name": "juggledad",
"url": "https://github.com/juggledad"
},
{
"name": "Lena Derksen",
"url": "https://github.com/boisei0"
},
{
"name": "jpmalich",
"url": "https://github.com/jpmalich"
}
],
"keywords": [
"node-red",
"fs",
"files",
"folders"
],
"node-red": {
"version": ">=0.18.0",
"nodes": {
"File Lister": "fs/fs-file-lister.js"
},
"notyetnodes": {
"File Copier": "fs/fs-file-copier.js"
}
},
"repository": {
"type": "git",
"url": "https://github.com/totallyinformation/node-red-contrib-fs"
},
"license": "Apache-2.0",
"bugs": {
"url": "https://github.com/totallyinformation/node-red-contrib-fs/issues"
},
"homepage": "https://github.com/totallyinformation/node-red-contrib-fs",
"directories": {},
"engines": {
"node": ">=8.16"
},
"browserslist": [
"> 0.5%",
"maintained node versions",
"last 2 versions",
"not dead",
"not ie < 11"
],
"main": "./fs/fs-file-lister.js"
}