This repository has been archived by the owner on Nov 4, 2020. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
63 lines (63 loc) · 1.58 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
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
{
"name": "web-google-maps",
"version": "1.0.1",
"description": "A Web Component to wrap and use Google Maps",
"keywords": [
"google maps",
"google maps api",
"google maps javascript"
],
"module": "dist/index.mjs",
"main": "dist/index.js",
"types": "dist/types/components.d.ts",
"collection": "dist/collection/collection-manifest.json",
"files": [
"dist/",
"readme.md",
"LICENSE"
],
"scripts": {
"build": "stencil build",
"dev": "sd concurrent \"stencil build --dev --watch\" \"stencil-dev-server\" ",
"serve": "stencil-dev-server",
"start": "npm run dev",
"test": "jest --no-cache",
"test.watch": "jest --watch --no-cache"
},
"dependencies": {
"@types/googlemaps": "^3.30.19"
},
"devDependencies": {
"@stencil/core": "^1.0.0-alpha.23",
"@stencil/dev-server": "latest",
"@stencil/postcss": "^0.1.0",
"@stencil/sass": "0.2.1",
"@stencil/utils": "latest",
"@types/jest": "^24.0.12",
"autoprefixer": "^9.5.1",
"jest": "^24.8.0"
},
"repository": {
"type": "git",
"url": "git+https://github.com/fluster/web-google-maps.git"
},
"author": "David Dal Busco",
"license": "MIT",
"bugs": {
"url": "https://github.com/fluster/web-google-maps"
},
"homepage": "https://webgooglemaps.com",
"jest": {
"transform": {
"^.+\\.(ts|tsx)$": "<rootDir>/node_modules/@stencil/core/testing/jest.preprocessor.js"
},
"testRegex": "(/__tests__/.*|\\.(test|spec))\\.(tsx?|jsx?)$",
"moduleFileExtensions": [
"ts",
"tsx",
"js",
"json",
"jsx"
]
}
}