-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
63 lines (63 loc) · 1.93 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
{
"name": "pano.gl",
"version": "0.2.2",
"description": "Web viewer for equirectangular video or image.",
"main": "lib/index.js",
"jsnext:main": "src/index.js",
"scripts": {
"start": "webpack-dev-server --progress --colors --inline --hot --config=./demo/webpack.config.js",
"test": "babel-node node_modules/.bin/isparta cover node_modules/.bin/_mocha",
"build-debug": "webpack --color --config ./webpack/debug.js",
"build-release": "webpack --color --config ./webpack/release.js",
"_prebuild": "npm test",
"build": "npm run build-debug && npm run build-release",
"es5": "babel ./src -d ./lib --source-maps inline",
"doc": "jsdoc -r ./src -d ./doc -R ./README.md -t ./node_modules/ink-docstrap/template",
"_prepublish": "npm test && npm run es5",
"prepublish": "npm run es5"
},
"repository": {
"type": "git",
"url": "https://github.com/yusangeng/pano.gl.git"
},
"keywords": [
"panorama",
"equirectangular",
"video-player",
"webgl"
],
"author": {
"name": "yusangeng",
"email": "yusangeng@outlook.com"
},
"license": "MIT",
"devDependencies": {
"babel-cli": "^6.24.1",
"babel-core": "^6.24.1",
"babel-loader": "^7.1.2",
"babel-plugin-transform-class-properties": "^6.24.1",
"babel-plugin-transform-decorators-legacy": "^1.3.4",
"babel-plugin-transform-runtime": "^6.23.0",
"babel-preset-env": "^1.6.1",
"babel-preset-es2015": "^6.24.1",
"chai": "^4.1.0",
"isparta": "^4.0.0",
"istanbul": "0.4.4",
"mocha": "^3.5.0",
"uglifyjs-webpack-plugin": "^1.1.6",
"webpack": "^3.10.0",
"webpack-bundle-analyzer": "^2.9.2",
"webpack-dev-server": "^2.11.0",
"webpack-glsl-loader": "^1.0.1"
},
"dependencies": {
"chivy": "^0.1.7",
"dodele": "^1.0.5",
"konph": "^0.1.6",
"litchy": "^1.2.2",
"lodash": "^4.17.4",
"param-check": "^1.1.9",
"polygala": "^0.1.0",
"shortid": "^2.2.8"
}
}