-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathpackage.json
More file actions
51 lines (51 loc) · 1.65 KB
/
package.json
File metadata and controls
51 lines (51 loc) · 1.65 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
{
"name": "aframe-lsystem-component",
"version": "0.2",
"description": "L-System/LSystem component for A-Frame to draw 3D turtle graphics. Using Lindenmayer as backend.",
"main": "dist/aframe-lsystem-component.js",
"browser": "dist/aframe-lsystem-component.min.js",
"scripts": {
"dev": "npm run dist; cp dist/aframe-lsystem-component.min.js examples/libs/aframe-lsystem-component.js; cp node_modules/aframe/dist/aframe-master.js examples/libs/aframe.js",
"dist": "webpack --module-bind worker-loader && webpack --config webpack.config.minify.js --module-bind worker-loader",
"postpublish": "npm run dist",
"preghpages": "rm -rf gh-pages && mkdir gh-pages && cp -r examples/* gh-pages",
"ghpages": "npm run dev && npm run preghpages && ghpages -p gh-pages"
},
"repository": {
"type": "git",
"url": "git+https://github.com/nylki/aframe-lsystem-component.git"
},
"keywords": [
"aframe",
"aframe-component",
"lsystem",
"turtle graphics",
"l-system",
"fractal",
"aframe-vr",
"vr",
"mozvr",
"webvr"
],
"author": "Tom Brewe <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/nylki/aframe-lsystem-component/issues"
},
"homepage": "https://github.com/nylki/aframe-lsystem-component#readme",
"devDependencies": {
"aframe": "^0.7.1",
"babel-core": "^6.26.3",
"babel-loader": "^6.4.1",
"babel-preset-env": "^1.7.0",
"ghpages": "^0.0.8",
"randomcolor": "^0.4.4",
"uglify-es": "^3.3.8",
"uglifyjs-webpack-plugin": "^1.1.6",
"webpack": "^3.12.0",
"worker-loader": "^0.8.1"
},
"dependencies": {
"lindenmayer": "^1.5.0"
}
}