-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
32 lines (32 loc) · 1002 Bytes
/
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
{
"name": "google-places-autocomplete-service",
"version": "0.0.2",
"description": "A simple factory using google places API to fetch predictions for places and get place details.",
"main": "dist/index.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"prebuild": "rimraf dist",
"build": "babel --out-dir dist src"
},
"repository": {
"type": "git",
"url": "git+https://github.com/novykh/google-places-autocomplete-service.git"
},
"keywords": [
"google",
"places",
"autocomplete"
],
"author": "Johnny Klironomos <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/novykh/google-places-autocomplete-service/issues"
},
"homepage": "https://github.com/novykh/google-places-autocomplete-service#readme",
"devDependencies": {
"babel-cli": "^6.23.0",
"babel-plugin-transform-object-rest-spread": "^6.23.0",
"babel-preset-es2015": "^6.22.0",
"rimraf": "^2.6.1"
}
}