ngx-geoautocomplete
Version:
angular 6+ compatible google autocomplete with server side api support and AOT enabled
118 lines (117 loc) • 4.34 kB
JSON
{
"name": "ngx-geoautocomplete",
"version": "0.1.1",
"description": "angular 6+ compatible google autocomplete with server side api support and AOT enabled",
"main": "./bundles/ngx-geoautocomplete.umd.js",
"module": "./index.js",
"typings": "./index.d.ts",
"scripts": {
"start": "concurrently --raw \"webpack-dev-server --open\" \"npm run test:watch\"",
"build:demo": "webpack -p",
"build:umd": "webpack --config webpack.config.umd.ts",
"build:ngc": "ngc -p tsconfig-ngc.json",
"build:dist": "npm run build:umd && npm run build:ngc",
"build:clean": "del-cli dist",
"test": "karma start --single-run && npm run build:dist && npm run build:clean",
"test:watch": "karma start --auto-watch",
"commit": "git-cz",
"compodoc": "compodoc -p tsconfig-compodoc.json -d docs --disableGraph --disableCoverage --disablePrivateOrInternalSupport",
"gh-pages": "git checkout gh-pages && git merge master --no-edit --no-ff && npm run build:demo && npm run compodoc && git add . && git commit -m \"chore: build demo and docs\" && git push && git checkout master",
"copyfiles": "copyfiles package.json LICENSE README.md CHANGELOG.md dist",
"prerelease": "npm test",
"release:git": "git add package.json && git commit -m \"chore: bump version number\" && standard-version --first-release && git push --follow-tags origin master",
"release:npm": "npm run build:dist && npm run copyfiles && npm publish dist",
"release": "npm run release:git && npm run release:npm",
"postrelease": "npm run build:clean && npm run gh-pages",
"commitmsg": "validate-commit-msg",
"codecov": "cat coverage/lcov.info | codecov"
},
"repository": {
"type": "git",
"url": "git+https://github.com/trovum/ngx-geoautocomplete.git"
},
"keywords": [
"angular6",
"angular",
"autocomplete",
"google place search",
"api autocomplete",
"angular6 geo autocomplete",
"angular 6 autocomplete",
"angular 6 custom place search",
"angular 6 google place search"
],
"author": "forked from tanoy kumar maity",
"license": "MIT",
"bugs": {
"url": "https://github.com/trovum/ngx-geoautocomplete/issues"
},
"homepage": "https://github.com/trovum/ngx-geoautocomplete#readme",
"devDependencies": {
"@angular/common": "^6.0.5",
"@angular/compiler": "^6.0.5",
"@angular/compiler-cli": "^6.0.5",
"@angular/core": "^6.0.5",
"@angular/forms": "^6.0.5",
"@angular/http": "^6.0.5",
"@angular/language-service": "^6.0.5",
"@angular/platform-browser": "^6.0.5",
"@angular/platform-browser-dynamic": "^6.0.5",
"@compodoc/compodoc": "1.0.0-beta.9",
"@types/chai": "^3.4.30",
"@types/html-webpack-plugin": "^2.11.2",
"@types/jasmine": "^2.2.33",
"@types/node": "^7.0.0",
"@types/sinon": "^2.1.2",
"@types/sinon-chai": "^2.7.26",
"@types/tapable": "0.2.5",
"@types/webpack": "^2.2.8",
"awesome-typescript-loader": "^3.0.8",
"chai": "^3.5.0",
"codecov": "^2.1.0",
"codelyzer": "^4.0.2",
"commitizen": "^2.8.1",
"concurrently": "^3.0.0",
"copyfiles": "^1.2.0",
"core-js": "^2.4.1",
"cz-conventional-changelog": "^2.0.0",
"del-cli": "^0.2.1",
"html-webpack-plugin": "^2.28.0",
"husky": "^0.13.0",
"istanbul-instrumenter-loader": "^2.0.0",
"jasmine-core": "^2.5.0",
"karma": "^1.4.1",
"karma-coverage-istanbul-reporter": "^1.0.0",
"karma-jasmine": "^1.0.2",
"karma-phantomjs-launcher": "^1.0.0",
"karma-sourcemap-loader": "^0.3.7",
"karma-webpack": "^2.0.1",
"phantomjs-prebuilt": "^2.1.7",
"rxjs": "^6.2.1",
"rxjs-compat": "^6.2.1",
"sinon": "^2.0.0",
"sinon-chai": "^2.8.0",
"standard-version": "^4.0.0",
"ts-node": "^3.0.0",
"tslint": "^5.8.0",
"tslint-loader": "^3.5.3",
"typescript": "2.7.2",
"validate-commit-msg": "^2.8.0",
"webpack": "^2.2.0",
"webpack-angular-externals": "^1.0.0",
"webpack-dev-server": "^2.2.0",
"webpack-rxjs-externals": "^1.0.0",
"zone.js": "^0.8.4"
},
"peerDependencies": {},
"dependencies": {
"@angular/animations": "^6.0.5",
"@angular/platform-server": "^6.0.5",
"@angular/router": "^6.0.5"
},
"config": {
"commitizen": {
"path": "node_modules/cz-conventional-changelog"
}
}
}