forked from RobotWebTools/roslibjs
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
79 lines (79 loc) · 2.12 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
74
75
76
77
78
79
{
"name": "roslib",
"homepage": "https://www.robotwebtools.org",
"description": "The standard ROS Javascript Library",
"version": "1.3.0",
"license": "BSD-2-Clause",
"main": "./src/RosLibNode.js",
"browser": {
"./src/RosLibNode.js": "./src/RosLib.js",
"canvas": "./src/util/shim/canvas.js",
"ws": "./src/util/shim/WebSocket.js",
"@xmldom/xmldom": "./src/util/shim/@xmldom/xmldom.js",
"./src/util/decompressPng.js": "./src/util/shim/decompressPng.js"
},
"devDependencies": {
"chai": "*",
"grunt": "^1.0.0",
"grunt-browserify": "^6.0.0",
"grunt-cli": "^1.2.0",
"grunt-contrib-clean": "^2.0.0",
"grunt-contrib-jshint": "^3.0.0",
"grunt-contrib-uglify": "^5.0.0",
"grunt-contrib-watch": "^1.0.0",
"grunt-jsdoc": "^2.1.0",
"grunt-karma": "^4.0.0",
"grunt-mocha-test": "^0.13.0",
"karma": "^6.3.0",
"karma-chai": "^0.1.0",
"karma-chrome-launcher": "^3.1.1",
"karma-firefox-launcher": "^2.1.0",
"karma-mocha": "^2.0.0",
"load-grunt-tasks": "^5.1.0",
"mocha": "^10.0.0",
"puppeteer": "^19.2.0",
"time-grunt": "^2.0.0"
},
"dependencies": {
"@xmldom/xmldom": "^0.8.0",
"cbor-js": "^0.1.0",
"eventemitter2": "^6.4.0",
"object-assign": "^4.0.0",
"pngparse": "^2.0.0",
"socket.io": "^4.0.0",
"webworkify": "^1.5.0",
"webworkify-webpack": "^2.1.5",
"ws": "^8.0.0"
},
"directories": {
"example": "examples",
"test": "test"
},
"engines": {
"node": ">=0.10"
},
"scripts": {
"build": "grunt build",
"doc": "grunt doc",
"test": "grunt test",
"test-examples": "grunt test-examples",
"test-workersocket": "grunt test-workersocket",
"test-tcp": "grunt test-tcp",
"publish": "npm run build && npm run test"
},
"repository": {
"type": "git",
"url": "https://github.com/RobotWebTools/roslibjs/releases"
},
"bugs": {
"url": "https://github.com/RobotWebTools/roslibjs/issues"
},
"keywords": [
"ROS",
"ros",
"roslib",
"roslibjs",
"robot"
],
"author": "Robot Webtools Team <robot-web-tools@googlegroups.com> (http://robotwebtools.org)"
}