-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
58 lines (58 loc) · 1.69 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
57
58
{
"name": "aframe-animation-component",
"version": "0.3.0",
"description": "Animation component for A-Frame.",
"main": "index.js",
"scripts": {
"build": "browserify examples/main.js -o examples/build.js",
"dev": "budo examples/main.js:build.js --dir examples --port 8000 --live --open",
"dist": "webpack index.js dist/aframe-animation-component.js && webpack -p index.js dist/aframe-animation-component.min.js",
"lint": "semistandard -v | snazzy",
"postpublish": "npm run dist",
"preghpages": "npm run build && shx rm -rf gh-pages && shx mkdir gh-pages && shx cp -r examples/* gh-pages",
"ghpages": "npm run preghpages && ghpages -p gh-pages",
"unboil": "node scripts/unboil.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/ngokevin/aframe-animation-component.git"
},
"keywords": [
"aframe",
"aframe-component",
"aframe-vr",
"vr",
"mozvr",
"webvr"
],
"author": "Kevin Ngo <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/ngokevin/aframe-animation-component/issues"
},
"homepage": "https://github.com/ngokevin/aframe-animation-component#readme",
"devDependencies": {
"aframe": "aframevr/aframe#master",
"browserify": "^13.0.0",
"browserify-css": "^0.9.1",
"budo": "^8.2.2",
"ghpages": "^0.0.8",
"inquirer": "^1.0.2",
"randomcolor": "^0.4.4",
"semistandard": "^8.0.0",
"shelljs": "^0.7.0",
"shx": "^0.1.1",
"snazzy": "^4.0.0",
"webpack": "^1.13.0"
},
"semistandard": {
"ignore": [
"examples/build.js",
"dist/**"
]
},
"dependencies": {
"aframe-template-component": "^1.6.0",
"animejs": "^1.1.0"
}
}