-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
43 lines (43 loc) · 1.29 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
{
"name": "@beyowi/svelte-google-places-autocomplete",
"version": "1.1.8",
"description": "A minimal port of the [Google Places Autocomplete API](https://developers.google.com/maps/documentation/javascript/places-autocomplete) as a Svelte component.",
"repository": {
"type": "git",
"url": "git+https://github.com/beyowi/svelte-google-places-autocomplete.git"
},
"bugs": {
"url": "https://github.com/beyowi/svelte-google-places-autocomplete/issues"
},
"homepage": "https://github.com/beyowi/svelte-google-places-autocomplete#readme",
"svelte": "src/index.js",
"module": "dist/index.mjs",
"main": "dist/index.js",
"scripts": {
"autobuild": "rollup -c -w",
"autobuildTest": "rollup -c test/rollup.config.js -w",
"build": "rollup -c",
"prepublishOnly": "npm run build",
"sirvTest": "sirv test --port 8086 --single --dev",
"test": "run-p autobuild autobuildTest sirvTest"
},
"devDependencies": {
"@rollup/plugin-node-resolve": "^6.0.0",
"npm-run-all": "^4.1.5",
"rollup": "^1.32.1",
"rollup-plugin-livereload": "^1.3.0",
"rollup-plugin-svelte": "^6.1.1",
"sirv-cli": "^0.4.6",
"svelte": "^3.38.2"
},
"keywords": [
"svelte",
"places",
"autocomplete"
],
"files": [
"src",
"dist"
],
"license": "MIT"
}