-
-
Notifications
You must be signed in to change notification settings - Fork 10
/
package.json
64 lines (64 loc) · 1.57 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
{
"name": "xacro-parser",
"version": "0.3.9",
"description": "Utility for parsing and converting ROS Xacro files in Javascript.",
"main": "umd/index.cjs",
"module": "src/index.js",
"types": "src/index.d.ts",
"type": "module",
"sideEffects": false,
"scripts": {
"start": "concurrently --kill-others \"rollup -c -w\" \"cd .. && static-server\"",
"build": "rollup -c",
"test": "rollup -c && jest",
"lint": "eslint ./src/*.js ./test/*.js && tsc --noEmit",
"prepublishOnly": "npm run build"
},
"files": [
"src/*",
"umd/*"
],
"repository": {
"type": "git",
"url": "git+https://github.com/gkjohnson/xacro-parser.git"
},
"author": "Garrett Johnson <garrett.kjohnson@gmail.com>",
"license": "MIT",
"bugs": {
"url": "https://github.com/gkjohnson/xacro-parser/issues"
},
"homepage": "https://github.com/gkjohnson/xacro-parser#readme",
"keywords": [
"javascript",
"xacro",
"xml",
"macro",
"robotics",
"ros",
"urdf",
"urdf-models",
"parser",
"robot-operating-system"
],
"devDependencies": {
"@babel/core": "^7.11.6",
"@babel/preset-env": "^7.11.5",
"@rollup/plugin-node-resolve": "^7.0.0",
"babel-jest": "^29.7.0",
"concurrently": "^5.2.0",
"eslint": "^7.10.0",
"eslint-plugin-jest": "^24.1.0",
"jest": "^29.7.0",
"jest-cli": "^29.7.0",
"jsdom": "^16.4.0",
"nyc": "^15.0.1",
"request": "^2.88.0",
"rollup": "^1.31.0",
"typescript": "^4.5.5"
},
"dependencies": {
"expr-eval": "^2.0.2",
"yaml": "^2.1.3",
"yargs": "^17.6.2"
}
}