forked from eProsima/node-red-ros2-plugin
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
89 lines (89 loc) · 2.14 KB
/
package.json
File metadata and controls
89 lines (89 loc) · 2.14 KB
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
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
{
"name": "node-red-ros2-plugin",
"license": "MIT",
"description": "A collection of Node-RED nodes for connecting with ROS2.",
"version": "1.0.1",
"engines": {
"node": ">=10"
},
"os": [
"!win32"
],
"repository": {
"type": "git",
"url": "https://github.com/eProsima/node-red-ros2-plugin.git"
},
"dependencies": {
"cron": "~1.8.2",
"is-web-api": "~1.0.1"
},
"devDependencies": {
"coveralls": "^3.1.0",
"eslint": "~7.5.0",
"eslint-config-tamia": "~7.2.5",
"eslint-plugin-prettier": "~3.1.2",
"husky": "~4.2.5",
"mocha": "8.0.1",
"mocha-lcov-reporter": "^1.3.0",
"nyc": "^15.1.0",
"prettier": "~2.0.5",
"remark-cli": "^6.0.1",
"remark-preset-lint-recommended": "^3.0.4",
"textlint": "~11.7.6",
"textlint-rule-common-misspellings": "~1.0.1",
"textlint-rule-terminology": "~2.1.4",
"textlint-rule-write-good": "~1.6.2"
},
"keywords": [
"ros2",
"node-red",
"contrib",
"fiware",
"ngsi",
"eProsima",
"context",
"process",
"data",
"json"
],
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"*.js": [
"prettier --config .prettierrc.json --write",
"git add"
],
"*.md": [
"prettier --no-config --tab-width 4 --print-width 120 --write --prose-wrap always",
"git add"
],
"*.yml": [
"prettier --no-config --write",
"git add"
]
},
"textlint": {
"rules": {
"common-misspellings": true,
"terminology": {
"defaultTerms": true
}
}
},
"node-red": {
"nodes": {
"DDS Settings": "src/dds-settings/dds-settings.js",
"publisher": "src/publisher/publisher.js",
"subscriber": "src/subscriber/subscriber.js",
"IDL Type": "src/idl-types/idl-types.js",
"ROS 2 Type": "src/ros2-types/ros2-types.js",
"ROS2 Inject": "src/ros2-message-inject/ros2-message-inject.js",
"FIWARE Publisher": "src/fiware_publisher/fiware_publisher.js",
"FIWARE Subscriber": "src/fiware_subscriber/fiware_subscriber.js",
"FIWARE Settings": "src/fiware-settings/fiware-settings.js"
}
}
}