pano
Version:
Easily add multiple 360-panoramic viewers to a page using Panolens.js
74 lines (73 loc) • 2.17 kB
JSON
{
"name": "pano",
"version": "1.1.1",
"description": "Easily add multiple 360-panoramic viewers to a page using Panolens.js",
"main": "dist/pano.js",
"jsnext:main": "src/pano.js",
"scripts": {
"clean": "rimraf lib coverage",
"lint": "standard ./src/**/*.js",
"copy": "node ./bin/copy",
"test": "mocha -R spec --compilers js:babel-core/register ./test/setup.js ./test/**/*.spec.js",
"test:cov": "babel-node $(npm bin)/isparta cover --report lcov ./node_modules/mocha/bin/_mocha -- ./test --recursive",
"build:lib": "babel src --out-dir lib",
"build:umd": "webpack src/index.js dist/pano.js --config webpack-development.config.js",
"build:umd:min": "webpack -p src/index.js dist/pano.min.js --config webpack-production.config.js",
"build": "npm run clean && npm run copy && npm run build:lib && npm run build:umd && npm run build:umd:min",
"watch:umd": "npm run build:umd -- --stats --progress --colors --watch",
"watch:lib": "npm run build:lib -- --stats --progress --colors --watch",
"watch": "npm run watch:umd",
"prepublish": "npm run clean && npm run test && npm run build"
},
"authors": [
{
"name": "Sinan Bolel",
"email": "sinanbolel@gmail.com",
"url": "https://sinanbolel.com"
}
],
"contributors": [
{
"name": "Prescott Prue",
"email": "sprue.dev@gmail.com"
}
],
"license": "MIT",
"repository": {
"type": "git",
"url": "git@github.com:sbolel/pano.git"
},
"bugs": {
"url": "https://github.com/sbolel/pano/issues"
},
"homepage": "http://sbolel.github.io/pano/",
"keywords": [
"360",
"cardboard",
"jquery",
"pano",
"panolens",
"panorama",
"panoramic",
"three",
"three.js",
"vr"
],
"dependencies": {
"panolens.js": "^1.0.0"
},
"devDependencies": {
"babel-cli": "^6.6.5",
"babel-core": "^6.7.2",
"babel-loader": "^6.2.4",
"babel-preset-es2015": "^6.5.0",
"chai": "^3.5.0",
"fs-extra": "^0.30.0",
"isparta": "^4.0.0",
"jsdom": "^9.2.1",
"mocha": "^2.4.5",
"rimraf": "^2.5.1",
"standard": "^7.1.2",
"webpack": "^1.12.14"
}
}