-
Notifications
You must be signed in to change notification settings - Fork 8
/
Copy pathpackage.json
29 lines (29 loc) · 969 Bytes
/
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
{
"name": "aframe-xylayout",
"description": "Flexbox like layout + UI components for A-Frame",
"version": "0.0.1",
"author": "binzume",
"main": "dist/xylayout-all.js",
"directories": {
"example": "examples"
},
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"dist-concat": "npx uglifyjs -b -o dist/xylayout-all.js -- aframe-*.js",
"dist-min": "npx uglifyjs --compress pure_getters=true --mangle --mangle-props regex=/^_/ --source-map -o dist/xylayout-all.min.js -- aframe-*.js",
"dist": "npm run dist-min && npm run dist-concat && ls -la dist/*.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/binzume/aframe-xylayout.git"
},
"license": "MIT",
"bugs": {
"url": "https://github.com/binzume/aframe-xylayout/issues"
},
"homepage": "https://github.com/binzume/aframe-xylayout#readme",
"devDependencies": {
"@types/aframe": "^1.0.3",
"uglify-es": "^3.3.9"
}
}