forked from RobotWebTools/ros2-web-bridge
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
50 lines (50 loc) · 1.29 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
{
"name": "ros2-web-bridge",
"version": "0.3.1",
"description": "Bridge the web clients to ROS2.0 by a JSON interface",
"main": "index.js",
"keywords": [
"ros2",
"webbridge",
"rcl",
"rclnodejs"
],
"bin": {
"rosbridge": "bin/rosbridge.js"
},
"scripts": {
"test": "mocha test/nodejs/",
"wsserver": "node bin/rosbridge.js",
"browser": "node test/browser/test-html.js",
"lint": "eslint --max-warnings=0 index.js lib examples test",
"protocol": "mocha test/nodejs/protocol/entry.js test/nodejs/protocol/entry-client-mode.js",
"ci": "npm run test && npm run protocol && npm run browser"
},
"license": "Apache-2.0",
"repository": {
"type": "git",
"url": "git+https://github.com/RobotWebTools/ros2-web-bridge.git"
},
"authors": [
"Minggang Wang <[email protected]>",
"Kenny Yuan <[email protected]>",
"Wanming Lin <[email protected]>",
"Zhong Qiu <[email protected]>"
],
"devDependencies": {
"async": "^3.2.0",
"express": "^4.16.2",
"eslint": "^6.8.0",
"js-sha512": "^0.8.0",
"mocha": "^7.1.1",
"jsdom": "^16.2.1",
"puppeteer": "^2.1.1"
},
"dependencies": {
"commander": "^5.0.0",
"debug": "^4.1.1",
"rclnodejs": "^0.x.1",
"uuid": "^7.0.2",
"ws": "^7.1.1"
}
}