forked from microchipgnu/a-streaming
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
25 lines (25 loc) · 888 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
{
"name": "a-streaming",
"version": "1.0.0",
"description": "A streaming component for A-frame.",
"main": "index.js",
"author": "Luís Freitas",
"devDependencies": {
"browserify": "^16.2.3",
"budo": "^11.6.2",
"webpack": "^4.30.0",
"webpack-cli": "^3.3.1"
},
"dependencies": {
"aframe-watcher": "^1.4.0",
"eslint": "^4.19.1",
"eslint-config-airbnb-base": "^13.1.0"
},
"scripts": {
"dist": "webpack index.js dist/aframe-streaming-component.js && yarn minify",
"minify": "terser dist/aframe-streaming-component.js -o dist/aframe-streaming-component.min.js -c -m",
"lint": "semistandard -v | snazzy",
"dev": "budo index.js:dist/aframe-streaming-component.min.js --dir examples --port 8080 --live",
"dev:watcher": "concurrently \"budo examples/main.js:build.js --dir examples --port 8080 --live \" \"aframe-watcher\""
}
}