-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathpackage.json
More file actions
49 lines (49 loc) · 1.49 KB
/
package.json
File metadata and controls
49 lines (49 loc) · 1.49 KB
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
{
"name": "poolvr",
"description": "Play pool / billiards in WebVR!",
"version": "0.2.8",
"author": "Jeffrey Zitelli (https://github.com/jzitelli)",
"license": "MIT",
"homepage": "https://jzitelli.github.io/poolvr",
"repository": {
"type": "git",
"url": "git+https://github.com/jzitelli/poolvr.git"
},
"bugs": "https://github.com/jzitelli/poolvr/issues",
"dependencies": {
"cannon": "git://github.com/jzitelli/cannon.js.git",
"leapjs": "0.6.4",
"stats.js": "^0.16.0",
"three": "git://github.com/jzitelli/three.js.git#dev",
"three.py": "git://github.com/jzitelli/three.py.git#dev",
"webvr-polyfill": "git://github.com/jzitelli/webvr-polyfill.git"
},
"devDependencies": {
"eslint": "^3.2.2",
"browserify": "^13.1.0",
"watchify": "^3.7.0",
"uglify-js": "^2.7.0",
"mkdirp": "^0.5.1"
},
"files": [
"fonts/",
"images/",
"sounds/",
"src/",
".eslintrc.json",
"favicon.ico",
"pool_table.py",
"poolvr.css",
"poolvr.py",
"poolvr_template.html",
"LICENSE",
"README.md"
],
"scripts": {
"lint": "eslint src/*.js",
"build": "mkdirp build && browserify src/main.js -o build/poolvr.js && echo wrote build/poolvr.js && cat build/poolvr.js | uglifyjs -c > build/poolvr.min.js && echo wrote build/poolvr.min.js",
"start": "npm run build && python poolvr.py --verbose",
"watch": "npm run build && watchify src/main.js -o build/poolvr.js",
"dist": "npm run build && python poolvr.py --dist"
}
}