react-hotels-on-map
Version:
Presents a set of hotels as clustered markers on Google Map, each with an info window displaying the hotel summary
59 lines (58 loc) • 1.79 kB
JSON
{
"name": "react-hotels-on-map",
"version": "1.0.0",
"description": "Presents a set of hotels as clustered markers on Google Map, each with an info window displaying the hotel summary",
"main": "build/index.js",
"scripts": {
"clean": "rm ./build/*.js",
"build": "babel src -d build",
"watch": "babel src -w -d build",
"prepublish": "npm run build",
"lint": "eslint ./src ./tests",
"pretest": "npm run lint",
"test": "mocha --compilers js:babel-core/register -r tests/helpers/jsdom-bootstrap -t 4000 ./tests/*.spec.js",
"tdd": "mocha -w -R min --compilers js:babel-core/register -r tests/helpers/jsdom-bootstrap -t 4000 ./tests/*.spec.js",
"demo": "browserify src/demo.js -t babelify | uglifyjs -m > www/demo/bundle.js",
"demo-watch": "watchify src/demo.js -t babelify -d -o www/demo/bundle.js -v"
},
"repository": {
"type": "git",
"url": "git+https://github.com/ikr/react-hotels-on-map.git"
},
"keywords": [
"gui",
"react-component",
"browser",
"html",
"hotels",
"map",
"geolocation",
"browserify",
"clustered",
"markers"
],
"author": "Ivan Krechetov <ikr@ikr.su>",
"license": "MIT",
"bugs": {
"url": "https://github.com/ikr/react-hotels-on-map/issues"
},
"homepage": "https://github.com/ikr/react-hotels-on-map#readme",
"devDependencies": {
"babel-cli": "^6.2.0",
"babel-core": "^6.2.1",
"babel-preset-es2015": "^6.1.18",
"babel-preset-react": "^6.1.18",
"babelify": "^7.2.0",
"browserify": "^12.0.1",
"eslint": "^1.10.1",
"eslint-plugin-react": "^3.10.0",
"jsdom": "^7.1.0",
"mocha": "^2.3.4",
"react": "^0.13.3",
"uglify-js": "^2.6.1",
"watchify": "^3.6.1"
},
"peerDependencies": {
"react": "^0.13.3"
}
}