-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
57 lines (57 loc) · 1.22 KB
/
package.json
File metadata and controls
57 lines (57 loc) · 1.22 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
50
51
52
53
54
55
56
57
{
"name": "scene-client",
"version": "1.25.0",
"dependencies": {
"ao-mesher": "^0.2.4",
"babel-preset-es2015": "6.3.13",
"babelify": "^7.2.0",
"cannon": "git://github.com/schteppe/cannon.js.git#master",
"glslify": "2.3.1",
"howler": "1.1.25",
"html2canvas": "scenevr/html2canvas",
"jquery": "2.1.4",
"ndarray": "1.0.18",
"ndarray-fill": "1.0.1",
"ndarray-ops": "1.2.2",
"stats-js": "1.0.0-alpha1",
"stringify": "3.1.0",
"three": "0.74.0",
"tween.js": "0.14.0",
"uri-js": "1.4.2",
"util": "0.10.3",
"virtual-dom": "2.1.1",
"vox-to-ndarray": "^1.2.0",
"voxel-crunch": "0.2.1",
"webvr-polyfill": "^0.2.7",
"wolfy87-eventemitter": "4.2.9",
"zeros": "^1.0.0"
},
"main": "src/client.js",
"devDependencies": {
"semistandard": "^4.0.3",
"tape": "^4.0.0",
"zuul": "^3.0.0"
},
"scripts": {
"test": "semistandard && browserify -t stringify src/client.js > /dev/null"
},
"browserify": {
"transform": [
"stringify",
[
"babelify",
{
"presets": [
"es2015"
]
}
]
]
},
"semistandard": {
"ignore": [
"build/**",
"vendor/**"
]
}
}