forked from darkwave/aframe-stl-model-component
-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
51 lines (51 loc) · 1.38 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
{
"name": "aframe-stl-model",
"version": "0.1.2",
"description": "A STL files component for A-Frame.",
"main": "index.js",
"unpkg": "dist/aframe-stl-model.min.js",
"scripts": {
"dev": "budo index.js:dist/aframe-stl-model.min.js --port 7000 --live --open",
"dist": "webpack --config webpack.unminified.config.js && webpack --define process.env.NODE_ENV=\"production\"",
"lint": "semistandard -v | snazzy",
"start": "npm run dev",
"test": "karma start ./tests/karma.conf.js",
"test:firefox": "karma start ./tests/karma.conf.js --browsers Firefox",
"test:chrome": "karma start ./tests/karma.conf.js --browsers Chrome"
},
"repository": {
"type": "git",
"url": "git+https://github.com/jaumesegarra/aframe-stl-model.git"
},
"keywords": [
"aframe",
"aframe-component",
"aframe-vr",
"vr",
"mozvr",
"webvr",
"stl-model"
],
"author": "Jaume Segarra <jaumesv.jmr@gmail.com>",
"license": "GPL-3.0",
"bugs": {
"url": "https://github.com/jaumesegarra/aframe-stl-model/issues"
},
"homepage": "https://github.com/jaumesegarra/aframe-stl-model#readme",
"devDependencies": {
"aframe": "*",
"uglifyjs-webpack-plugin": "latest",
"webpack": "latest",
"budo": "latest"
},
"semistandard": {
"globals": [
"AFRAME",
"THREE"
],
"ignore": [
"examples/build.js",
"dist/**"
]
}
}