forked from aframevr/aframe
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
69 lines (69 loc) · 1.98 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
59
60
61
62
63
64
65
66
67
68
69
{
"name": "aframe",
"version": "0.1.2",
"description": "Building blocks for the VR Web",
"main": "index.js",
"scripts": {
"start": "npm run dev",
"dev": "npm run build && node ./scripts/budo",
"browserify": "browserify ./index.js -s 'AFRAME'",
"build": "mkdir -p build/ && npm run browserify -- --debug -o build/aframe.js",
"dist": "mkdir -p dist/ && npm run browserify -s -- --debug | exorcist dist/aframe.js.map > dist/aframe.js && uglifyjs dist/aframe.js -c warnings=false -m -o dist/aframe.min.js",
"preghpages": "npm run dist && rm -rf gh-pages && mkdir -p gh-pages && cp -r {.nojekyll,dist,lib,examples,index.html,style} gh-pages/. 2>/dev/null || : && git checkout dist/ && replace 'build/aframe.js' 'dist/aframe.min.js' gh-pages/ -r --silent",
"ghpages": "node ./scripts/gh-pages",
"gh-pages": "npm run ghpages",
"version": "npm run dist",
"release:bump": "npm version patch --preminor && git commit -a -C HEAD --amend",
"release:push": "npm login && npm publish && git push --follow-tags",
"lint": "semistandard -v $(git ls-files '*.js') | snazzy",
"precommit": "npm run lint"
},
"repository": "aframevr/aframe",
"license": "MIT",
"devDependencies": {
"budo": "^7.0.2",
"exorcist": "^0.4.0",
"gh-pages": "^0.4.0",
"html-minifier": "^0.8.0",
"husky": "^0.10.1",
"replace": "^0.3.0",
"semistandard": "^7.0.2",
"snazzy": "^2.0.1",
"uglifyjs": "^2.4.10"
},
"dependencies": {
"aframe-core": "^0.1.5",
"browserify": "^11.0.1",
"browserify-css": "^0.8.2",
"polymerize": "^1.0.0"
},
"link": true,
"browserify": {
"transform": [
[
"polymerize",
{
"match": ".*.html$"
}
]
]
},
"semistandard": {
"ignore": [
"build/**",
"dist/**",
"lib/vendor/**",
"examples/_js/**"
]
},
"keywords": [
"aframe",
"aframe-core",
"vr",
"webvr",
"3d",
"three",
"components",
"elements"
]
}