-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
54 lines (54 loc) · 1.48 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
{
"name": "@edgeworkscreative/ewc-google-map",
"version": "0.0.1",
"description": "Google Maps Place card web component built with StencilJS",
"module": "dist/esm/index.js",
"main": "dist/index.js",
"types": "dist/types/components.d.ts",
"collection": "dist/collection/collection-manifest.json",
"files": [
"dist/"
],
"scripts": {
"build": "stencil build --docs",
"start": "stencil build --dev --watch --serve",
"test": "jest",
"test.watch": "jest --watch",
"changelog": "conventional-changelog -i CHANGELOG.md -s"
},
"dependencies": {
"@edgeworkscreative/ewc-slides": "0.0.7",
"@ionic/core": "^4.0.0-beta.7",
"ionicons": "^4.4.3"
},
"devDependencies": {
"@stencil/core": "^0.12.1",
"@types/googlemaps": "^3.30.12",
"@types/jest": "^23.3.1",
"jest": "^23.5.0",
"conventional-changelog-cli": "^2.0.5"
},
"repository": {
"type": "git",
"url": "git+https://github.com/edgeworkscreative/ewc-google-map.git"
},
"author": "Edgeworks Creative",
"license": "MIT",
"bugs": {
"url": "https://github.com/edgeworkscreative/ewc-google-map"
},
"homepage": "https://github.com/edgeworkscreative/ewc-google-map",
"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"
]
}
}