-
-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
56 lines (56 loc) · 1.44 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
{
"name": "urdf-exporter",
"version": "0.4.0",
"description": "THREE.js utility for exporting object trees as a URDF file.",
"main": "build/index.umd.cjs",
"module": "src/index.js",
"files": [
"src/*",
"umd/*"
],
"scripts": {
"start": "cd example && parcel serve ./*.html --dist-dir ./dev-bundle/ --no-cache --no-hmr",
"build-examples": "cd example && parcel build ./*.html --dist-dir ./bundle/ --public-url . --no-cache --no-content-hash",
"build": "rollup -c",
"test": "rollup -c && jest",
"lint": "eslint ./src/*.js ./example/*.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/gkjohnson/urdf-exporter-js.git"
},
"author": "Garrett Johnson <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/gkjohnson/urdf-exporter-js/issues"
},
"homepage": "https://github.com/gkjohnson/urdf-exporter-js#readme",
"keywords": [
"javascript",
"three",
"threejs",
"graphics",
"geometry",
"model",
"urdf",
"export",
"exporter",
"robotics",
"robots"
],
"peerDependencies": {
"three": "^0.137.0"
},
"devDependencies": {
"eslint-config-mdcs": "^5.0.0",
"concurrently": "^7.4.0",
"eslint": "^7.32.0",
"eslint-plugin-jest": "^23.20.0",
"jest": "^27.2.4",
"rollup": "^2.79.2",
"parcel": "^2.0.0",
"static-server": "^2.2.0",
"three": "^0.137.0",
"urdf-loader": "^0.10.4"
}
}