This repository has been archived by the owner on May 12, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
102 lines (102 loc) · 3.22 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
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
{
"name": "@gocrisp/store-locator",
"version": "0.5.8",
"description": "Store locator widget, intended for use with the Crisp GeoJSON connector.",
"main": "dist/store-locator.js",
"umd:main": "dist/store-locator.umd.js",
"module": "dist/store-locator.esm.js",
"types": "dist/index.d.ts",
"files": [
"dist",
"readme.md"
],
"dependencies": {
"@googlemaps/js-api-loader": "^1.11.3"
},
"devDependencies": {
"@cimonitor/parcel-transformer-package-version": "^0.1.0",
"@parcel/config-default": "^2.4.1",
"@parcel/core": "^2.4.1",
"@parcel/transformer-raw": "^2.4.1",
"@parcel/transformer-typescript-tsc": "^2.5.0",
"@testing-library/dom": "^7.30.0",
"@testing-library/jest-dom": "^5.11.9",
"@testing-library/user-event": "^13.0.16",
"@types/google.maps": "^3.44.2",
"@types/jest": "^26.0.14",
"@types/markdown-it": "^12.2.3",
"@types/markdown-it-highlightjs": "^3.3.1",
"@typescript-eslint/eslint-plugin": "^5.18.0",
"@typescript-eslint/parser": "^5.18.0",
"babel-polyfill": "^6.26.0",
"eslint": "^7.9.0",
"eslint-config-prettier": "^8.1.0",
"eslint-plugin-import": "^2.22.1",
"eslint-plugin-jest": "^24.0.2",
"eslint-plugin-jest-dom": "^3.6.5",
"eslint-plugin-prettier": "^3.3.1",
"eslint-plugin-promise": "^4.2.1",
"eslint-plugin-testing-library": "^3.10.1",
"identity-obj-proxy": "^3.0.0",
"jest": "^26.4.2",
"markdown-it": "^12.3.2",
"markdown-it-highlightjs": "^3.4.0",
"microbundle": "^0.13.0",
"parcel": "^2.4.1",
"parcel-plugin-static-files-copy": "^2.6.0",
"parcel-transformer-markdown": "^2.1.0",
"prettier": "^2.0.4",
"rimraf": "^3.0.2",
"ts-jest": "^26.3.0",
"typescript": "^4.6.3"
},
"resolutions": {
"set-value": "^4.1.0",
"nth-check": ">=2.0.1",
"json-schema": ">=0.4.0"
},
"scripts": {
"build": "microbundle -o dist/ --sourcemap false --compress false",
"dev": "microbundle watch -o dist/ --sourcemap false --compress false",
"start": "yarn build && yarn example",
"build-docs": "yarn clean && parcel build example/index.html example/sample.json --dist-dir example/dist --public-url /store-locator/ --no-cache",
"example": "yarn clean && parcel example/index.html example/sample.json --dist-dir example/dist",
"test": "jest --watch --setupTestFrameworkScriptFile=./test-setup.ts",
"test-ci": "jest --ci --coverage --setupTestFrameworkScriptFile=./test-setup.ts",
"lint": "eslint --ext .js,.jsx,.ts,.tsx src --report-unused-disable-directives --max-warnings 0",
"clean": "rimraf example/dist"
},
"repository": {
"type": "git",
"url": "git+https://github.com/gocrisp/store-locator"
},
"keywords": [
"crisp",
"gocrisp",
"geojson",
"google maps",
"store locator"
],
"jest": {
"testEnvironment": "jsdom",
"testPathIgnorePatterns": [
"node_modules",
"dist",
"coverage"
],
"moduleNameMapper": {
"\\.(css|jpg|png)$": "identity-obj-proxy"
},
"transform": {
"^.+\\.ts?$": "ts-jest"
}
},
"author": "Crisp",
"license": "MIT",
"homepage": "https://gocrisp.github.io/store-locator/",
"targets": {
"module": false,
"main": false,
"types": false
}
}