-
Notifications
You must be signed in to change notification settings - Fork 63
/
package.json
47 lines (47 loc) · 1.31 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
{
"name": "360-image-viewer",
"version": "1.0.1",
"description": "",
"main": "index.js",
"license": "MIT",
"author": {
"name": "Matt DesLauriers",
"email": "[email protected]",
"url": "https://github.com/mattdesl"
},
"dependencies": {
"defined": "^1.0.0",
"object-assign": "^4.1.1",
"orbit-controls": "^1.2.0",
"perspective-camera": "^2.0.1",
"primitive-sphere": "^3.0.0",
"raf-loop": "^1.1.3",
"regl": "^1.3.0"
},
"devDependencies": {
"babel-preset-es2015": "^6.24.1",
"babelify": "^7.3.0",
"browserify": "^14.4.0",
"budo": "^10.0.3",
"drag-drop": "^2.13.2",
"get-canvas-context": "^1.0.2",
"surge": "^0.19.0",
"uglify-js": "^3.0.15"
},
"scripts": {
"test": "node test.js",
"deploy:upload": "surge -p demo -d 360-image-viewer-test.surge.sh",
"deploy": "npm run build && npm run deploy:upload",
"start": "budo demo/index.js:bundle.js --dir demo --live -- -t babelify",
"build": "browserify demo/index.js -t babelify | uglifyjs -m -c warnings=false > demo/bundle.js"
},
"keywords": [],
"repository": {
"type": "git",
"url": "git://github.com/Jam3/360-image-viewer.git"
},
"homepage": "https://github.com/Jam3/360-image-viewer",
"bugs": {
"url": "https://github.com/Jam3/360-image-viewer/issues"
}
}