-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
78 lines (78 loc) · 2.23 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
{
"name": "@sixriver/roslib",
"homepage": "https://www.robotwebtools.org",
"description": "The standard ROS Javascript Library",
"version": "0.0.0-development",
"license": "BSD",
"main": "./src/RosLibNode.js",
"browser": {
"./src/RosLibNode.js": "./src/RosLib.js",
"canvas": "./src/util/shim/canvas.js",
"ws": "./src/util/shim/WebSocket.js",
"xmldom": "./src/util/shim/xmldom.js",
"./src/util/decompressPng.js": "./src/util/shim/decompressPng.js"
},
"devDependencies": {
"chai": "*",
"coveralls": "3.1.0",
"grunt": "1.3.0",
"grunt-browserify": "6.0.0",
"grunt-cli": "^1.2.0",
"grunt-contrib-clean": "^1.0.0",
"grunt-contrib-jshint": "^1.0.0",
"grunt-contrib-uglify": "^3.1.0",
"grunt-contrib-watch": "^1.0.0",
"grunt-jsdoc": "2.4.1",
"grunt-karma": "^2.0.0",
"grunt-mocha-test": "^0.13.3",
"karma": "6.3.2",
"karma-chai": "^0.1.0",
"karma-firefox-launcher": "^1.0.0",
"karma-mocha": "^1.1.1",
"load-grunt-tasks": "^3.3.0",
"mocha": "8.4.0",
"nsp": "^2.8.0",
"nyc": "^11.3.0",
"time-grunt": "^1.0.0"
},
"dependencies": {
"eventemitter2": "~4.1.2",
"object-assign": "^4.0.1",
"pngparse": "^2.0.1",
"ws": "^3.3.1",
"xmldom": "^0.1.19",
"cbor-js": "^0.1.0",
"socket.io": "2.2.0"
},
"directories": {
"example": "examples",
"test": "test"
},
"engines": {
"node": ">=10.16.2"
},
"scripts": {
"test": "nyc grunt test --verbose",
"test-examples": "grunt mochaTest:examples && xvfb-run -a karma start test/examples/karma.conf.js",
"test-workersocket": "grunt uglify && xvfb-run -a karma start test/workersocket/karma.conf.js",
"test-tcp": "grunt mochaTest:tcp",
"publish": "grunt build",
"test:debug": "npm run test:no-cover -- --debug-brk test",
"coverage": "NODE_ENV=test nyc report --reporter=text-lcov | coveralls"
},
"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 <[email protected]> (http://robotwebtools.org)"
}