-
Notifications
You must be signed in to change notification settings - Fork 86
/
package.json
88 lines (88 loc) · 2.7 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
{
"name": "leaflet.glify",
"version": "3.3.0",
"description": "web gl renderer plugin for leaflet",
"main": "dist/glify.js",
"browser": "dist/glify-browser.js",
"module": "dist/glify-browser.js",
"files": [
"/src",
"/dist"
],
"scripts": {
"test": "jest",
"build": "webpack --config webpack.config.js",
"coverage": "jest --coverage --coverage-provider v8 && codecov",
"serve": "webpack-dev-server --config webpack.config.dev.js --open",
"prepublish-gh-pages": "webpack --config webpack.config.gh-pages.js",
"publish-gh-pages": "npm run prepublish-gh-pages; gh-pages -d .gh-pages",
"lint": "run-p lint:**",
"lint:eslint": "eslint --fix --ext .js,.ts src",
"lint:typecheck": "tsc --noEmit",
"prepublishOnly": "npm run build",
"prepare": "npm run build"
},
"repository": {
"type": "git",
"url": "git+https://github.com/robertleeplummerjr/Leaflet.glify.git"
},
"author": "",
"license": "MIT",
"bugs": {
"url": "https://github.com/robertleeplummerjr/Leaflet.glify/issues"
},
"homepage": "https://github.com/robertleeplummerjr/Leaflet.glify#readme",
"dependencies": {
"earcut": "^2.2.4",
"geojson-flatten": "^1.1.1",
"point-in-polygon": "^1.1.0",
"polygon-lookup": "^2.6.0",
"rbush": "^3.0.1"
},
"devDependencies": {
"@glen/jest-raw-loader": "^2.0.0",
"@types/earcut": "^2.1.4",
"@types/eslint": "8.56.10",
"@types/eslint-plugin-prettier": "^3.1.3",
"@types/geojson": "^7946.0.14",
"@types/jest": "^29.5.12",
"@types/leaflet": "^1.9.12",
"@types/node": "^20.14.2",
"@types/polygon-lookup": "^2.6.4",
"@typescript-eslint/eslint-plugin": "^7.13.0",
"@typescript-eslint/parser": "^7.13.0",
"brfs": "^2.0.2",
"c8": "^10.1.2",
"canvas": "^2.11.2",
"copy-webpack-plugin": "^12.0.2",
"eslint": "^8.0.1",
"eslint-config-love": "^52.0.0",
"eslint-config-prettier": "^9.1.0",
"eslint-config-standard": "^15.0.1",
"eslint-plugin-import": "^2.29.1",
"eslint-plugin-jest": "^28.6.0",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-prettier": "^5.1.3",
"eslint-plugin-promise": "^6.2.0",
"eslint-plugin-standard": "^5.0.0",
"gh-pages": "^6.1.1",
"glslify-bundle": "^5.1.1",
"glslify-deps": "^1.3.2",
"jest": "^29.7.0",
"jest-environment-jsdom": "^29.7.0",
"jest-webgl-canvas-mock": "^2.5.3",
"leaflet": "1.9.4",
"npm-run-all": "^4.1.5",
"prettier": "^3.3.2",
"ts-jest": "^29.1.4",
"ts-loader": "^9.5.1",
"ts-shader-loader": "^2.0.2",
"typescript": "^5.4.5",
"webpack": "^5.92.0",
"webpack-cli": "^5.1.4",
"webpack-dev-server": "^5.0.4"
},
"peerDependencies": {
"leaflet": "1.9.4"
}
}