forked from RethinkRobotics-opensource/rosnodejs
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
41 lines (41 loc) · 1.02 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
{
"name": "rosnodejs",
"version": "3.0.2",
"description": "Native ROS for nodejs",
"main": "dist/index.js",
"keywords": [
"ros"
],
"scripts": {
"test": "mocha --exit test/directory.js",
"gennodejsTest": "mocha test/gennodejsTest.js test/onTheFlyMessages.js",
"stressTest": "mocha test/stress.js",
"flatten": "node tools/flatten.js",
"generate": "node dist/tools/generateMessages.js",
"compile": "babel src/ -d dist/",
"prepublish": "npm run compile"
},
"author": "chris smith",
"license": "Apache-2.0",
"repository": {
"type": "git",
"url": "git://github.com/RethinkRobotics-opensource/rosnodejs"
},
"devDependencies": {
"babel-cli": "^6.18.0",
"babel-preset-env": "^1.7.0",
"chai": "^4.1.2",
"mocha": "^5.2.0"
},
"dependencies": {
"argparse": "1.0.10",
"async": "2.6.1",
"bn.js": "^4.11.6",
"bunyan": "1.8.12",
"md5": "2.2.1",
"moment": "2.22.2",
"ultron": "1.1.1",
"walker": "1.0.7",
"xmlrpc": "chfritz/node-xmlrpc"
}
}