-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
54 lines (54 loc) · 1.43 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": "@inuse/node-red-contrib-ifm-vvb001",
"version": "0.0.4",
"description": "A Node red package that handles communication with an ifm VVB001 sensor through iolink.",
"scripts": {
"eslint": "eslint vvb001/",
"prettier:check": "prettier --list-different \"**/*.{js,md}\"",
"prettier": "prettier --write \"**/*.{js,md}\""
},
"repository": {
"type": "git",
"url": "git+https://github.com/optimdata/node-red-contrib-ifm-vvb001.git"
},
"keywords": [
"node-red",
"iolink",
"ifm",
"vvb001"
],
"node-red": {
"version": ">=2.0.0",
"nodes": {
"iolink-VVB001": "vvb001/data.js",
"iolink-VVB001-stream-blob": "vvb001/stream-blob.js",
"iolink-VVB001-status-blob": "vvb001/status-blob.js",
"iolink-VVB001-abort-blob": "vvb001/abort-blob.js"
}
},
"author": {
"name": "Othman Moumni Abdou",
"url": "https://github.com/omoumniabdou"
},
"license": "ISC",
"bugs": {
"url": "https://github.com/optimdata/node-red-contrib-ifm-vvb001/issues"
},
"engines": {
"node": ">=12.0.0"
},
"homepage": "https://github.com/optimdata/node-red-contrib-ifm-vvb001#readme",
"dependencies": {
"node-fetch": "2.6.7"
},
"devDependencies": {
"@babel/eslint-parser": "^7.16.3",
"eslint": "^8.2.0",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-import": "^2.25.3",
"prettier": "^2.4.1"
},
"directories": {
"example": "examples"
}
}