-
-
Notifications
You must be signed in to change notification settings - Fork 11
Expand file tree
/
Copy pathpackage.json
More file actions
62 lines (62 loc) · 1.52 KB
/
package.json
File metadata and controls
62 lines (62 loc) · 1.52 KB
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
{
"name": "xacro-parser",
"version": "0.3.11",
"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 && vitest run",
"lint": "eslint . && 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": {
"@eslint/js": "^9.0.0",
"@rollup/plugin-node-resolve": "^16.0.0",
"@types/node": "^24.3.1",
"@vitest/eslint-plugin": "^1.5.0",
"concurrently": "^8.2.1",
"eslint": "^9.0.0",
"eslint-config-mdcs": "^5.0.0",
"globals": "^16.5.0",
"jsdom": "^26.0.0",
"rollup": "^4.53.2",
"typescript": "^5.9.3",
"vitest": "^4.0.14"
},
"dependencies": {
"expr-eval-fork": "^3.0.0",
"yaml": "^2.1.3",
"yargs": "^17.6.2"
}
}