-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
executable file
·56 lines (56 loc) · 1.55 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
{
"name": "@com-tiles/maplibre-provider",
"version": "1.0.0-rc.0",
"description": "COMTiles provider for MapLibre GL JS",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/mactrem/com-tiles.git"
},
"main": "dist/maplibreComtProvider.js",
"types": "dist/index.d.ts",
"engines": {
"node": ">=15"
},
"scripts": {
"dev": "webpack --config config/webpack.dev.js",
"build": "webpack --config config/webpack.prod.js",
"serve": "webpack serve --config config/webpack.dev.js",
"test": "jest",
"lint": "eslint --max-warnings=0 --fix --ext .ts src",
"format": "prettier --write \"**/*.ts\""
},
"dependencies": {
"@com-tiles/provider": "git+ssh://[email protected]:markiearnold/provider.git"
},
"peerDependencies": {
"maplibre-gl": "^2.1.7"
},
"devDependencies": {
"@types/jest": "^27.0.3",
"@typescript-eslint/eslint-plugin": "^5.8.1",
"@typescript-eslint/parser": "^5.8.1",
"clean-webpack-plugin": "^3.0.0",
"copy-webpack-plugin": "^7.0.0",
"eslint": "^7.30.0",
"html-webpack-plugin": "^4.5.1",
"jest": "^27.4.5",
"prettier": "^2.5.1",
"ts-jest": "^27.1.2",
"ts-loader": "^5.3.3",
"typescript": "^4.5.4",
"webpack": "^5.14.0",
"webpack-cli": "^4.4.0",
"webpack-dev-server": "^3.11.2",
"webpack-merge": "^5.7.3",
"yocto-queue": "^0.1.0"
},
"files": [
"dist/*",
"CHANGELOG.md"
],
"bugs": {
"url": "https://github.com/mactrem/com-tiles/issues"
},
"homepage": "https://github.com/mactrem/com-tiles#readme"
}