forked from supermedium/aframe-super-shooter-kit
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
56 lines (56 loc) · 1.53 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": "aframe-super-shooter-kit",
"version": "1.1.7",
"description": "A-Frame kit of components for making a simple WebVR shooter minigame.",
"main": "index.js",
"unpkg": "dist/aframe-super-shooter-kit.min.js",
"scripts": {
"build": "webpack index.js -o dist/aframe-super-shooter-kit.js",
"dev": "budo index.js:dist/aframe-super-shooter-kit.min.js --port 7000 --live --open",
"dist": "npm run build && uglifyjs dist/aframe-super-shooter-kit.js > dist/aframe-super-shooter-kit.min.js",
"lint": "semistandard -v | snazzy",
"prepublish": "npm run dist",
"ghpages": "ghpages",
"start": "npm run dev"
},
"repository": {
"type": "git",
"url": "git+https://github.com/supermedium/aframe-super-shooter-kit.git"
},
"keywords": [
"aframe",
"aframe-component",
"aframe-vr",
"vr",
"webvr",
"shooter"
],
"author": "Supermedium <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/supermedium/aframe-super-shooter-kit/issues"
},
"homepage": "https://github.com/supermedium/aframe-super-shooter-kit#readme",
"devDependencies": {
"aframe": "*",
"browserify": "^13.0.0",
"budo": "^8.2.2",
"ghpages": "^0.0.8",
"randomcolor": "^0.4.4",
"semistandard": "^8.0.0",
"shelljs": "^0.7.0",
"shx": "^0.1.1",
"snazzy": "^4.0.0",
"uglify-es": "github:mishoo/UglifyJS2#harmony"
},
"semistandard": {
"globals": [
"AFRAME",
"THREE"
],
"ignore": [
"examples/build.js",
"dist/**"
]
}
}