This repository has been archived by the owner on May 21, 2019. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
93 lines (93 loc) · 2.43 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
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
{
"name": "vps-vr",
"version": "0.0.1",
"description": "Virtual Puppet Studio",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"dev": "gulp dev",
"watch": "gulp watch",
"clean": "gulp clean",
"build": "gulp dist"
},
"repository": {
"type": "git",
"url": "git://github.com/datavized/puppets.git"
},
"homepage": "https://github.com/datavized/puppets",
"bugs": {
"url": "https://github.com/datavized/puppets/issues"
},
"author": "Brian Chirls <brian@datavized.com> (http://datavized.com)",
"license": "MIT",
"private": false,
"dependencies": {
"babel-core": "^6.24.1",
"babel-loader": "^7.0.0",
"babel-preset-es2015": "^6.24.1",
"compression-webpack-plugin": "^0.4.0",
"copy-webpack-plugin": "^4.0.1",
"css-loader": "^0.28.4",
"del": "^2.2.2",
"es6-promise": "^4.1.0",
"eslint": "^3.19.0",
"eslint-config-crockford": "^1.0.0",
"eslint-loader": "^1.7.1",
"event-emitter": "^0.3.5",
"exports-loader": "^0.6.4",
"file-loader": "^0.11.1",
"firebase": "^3.9.0",
"fs-promise": "^2.0.3",
"gulp": "^3.9.1",
"gulp-data": "^1.2.1",
"gulp-htmlmin": "^3.0.0",
"gulp-insert": "^0.5.0",
"gulp-nunjucks-render": "^2.2.1",
"gulp-surge": "^0.1.0",
"gulp-util": "^3.0.8",
"html-loader": "^0.4.5",
"imports-loader": "^0.7.1",
"jshint": "^2.9.4",
"jshint-loader": "^0.8.4",
"json-loader": "^0.5.4",
"object-assign": "^4.1.1",
"open-iconic": "^1.1.1",
"raw-loader": "^0.5.1",
"recorderjs": "git+https://github.com/mattdiamond/Recorderjs.git",
"safe-json-stringify": "^1.0.4",
"style-loader": "^0.18.1",
"three": "^0.84.0",
"url-loader": "^0.5.8",
"webpack": "^2.6.1",
"webpack-stream": "^3.2.0",
"webvr-polyfill": "git+ssh://git@github.com/brianchirls/webvr-polyfill.git#bounds-and-framedata"
},
"jshintConfig": {
"globals": {
"console": true
},
"bitwise": true,
"browser": true,
"camelcase": true,
"curly": true,
"eqeqeq": true,
"esversion": 6,
"forin": true,
"freeze": true,
"funcscope": true,
"strict": "global",
"immed": true,
"iterator": true,
"latedef": true,
"maxparams": 5,
"newcap": true,
"noarg": true,
"nonbsp": true,
"nonew": true,
"notypeof": true,
"quotmark": "single",
"shadow": true,
"singleGroups": true,
"undef": true,
"unused": true
}
}