-
Notifications
You must be signed in to change notification settings - Fork 37
Expand file tree
/
Copy pathpackage.json
More file actions
66 lines (66 loc) · 1.94 KB
/
package.json
File metadata and controls
66 lines (66 loc) · 1.94 KB
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
{
"name": "leaflet.control.layers.tree",
"version": "1.2.0",
"description": "Control Layers in a Tree structure",
"main": "L.Control.Layers.Tree.js",
"style": "L.Control.Layers.Tree.css",
"types": "L.Control.Layers.Tree.d.ts",
"directories": {
"test": "test"
},
"license": "BSD-3-Clause",
"scripts": {
"debug": "http-server -c-1",
"build": "rollup -c rollup-config.mjs",
"lint:js": "eslint .",
"lint:ts": "eslint --config eslint.config-ts.mjs *.ts",
"lint": "pnpm lint:js && pnpm lint:ts",
"lint:fix": "pnpm lint:js -- --fix",
"spec:js:pre": "puppeteer browsers install chrome",
"spec:js:v1": "mocha-headless-chrome -f test/v1/index.html -a no-sandbox",
"spec:js": "mocha-headless-chrome -f test/index.html -a no-sandbox",
"spec:ts": "tsc",
"spec": "pnpm build && pnpm spec:js:pre && pnpm spec:js && pnpm spec:js:v1 && pnpm spec:ts",
"test": "pnpm lint && pnpm spec"
},
"repository": {
"type": "git",
"url": "git+https://github.com/jjimenezshaw/Leaflet.Control.Layers.Tree.git"
},
"keywords": [
"Leaflet",
"map",
"geo",
"tree",
"control",
"layers"
],
"devDependencies": {
"@eslint/js": "^9.39.1",
"@rollup/plugin-json": "^6.1.0",
"@types/leaflet": "^1.9.21",
"@typescript-eslint/eslint-plugin": "^8.46.3",
"@typescript-eslint/parser": "^8.46.3",
"chai": "^4.5.0",
"eslint": "^9.39.1",
"eslint-plugin-html": "^8.1.3",
"globals": "^16.5.0",
"http-server": "^14.1.1",
"leaflet": "^1.9.4",
"mocha": "^11.7.5",
"mocha-headless-chrome": "^5.1.0",
"puppeteer": "^24.29.1",
"rollup": "^4.53.1",
"rollup-plugin-delete": "^3.0.1",
"rollup-plugin-git-version": "^0.3.1",
"simple-git": "^3.30.0",
"ts-node": "^10.9.2",
"typescript": "^5.9.3",
"typescript-eslint": "^8.46.3"
},
"peerDependencies": {
"leaflet": "^1.1.0"
},
"author": "Javier Jimenez Shaw",
"readmeFilename": "README.md"
}