-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
40 lines (40 loc) · 1.27 KB
/
Copy pathpackage.json
File metadata and controls
40 lines (40 loc) · 1.27 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
{
"name": "@wabson/mapbox-gl-style-switcher",
"version": "0.0.4",
"description": "Mapbox-GL custom control to allow users to switch between different background styles",
"main": "dist/style-switcher.js",
"types": "dist/index.d.ts",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"watch": "eslint src demo && webpack --watch --config-name demo",
"build": "eslint src demo && webpack && tsc",
"build-docs": "cp dist/* docs/",
"start": "eslint src demo && webpack serve --config-name demo",
"prepublish": "npm run build"
},
"author": "Will Abson",
"license": "ISC",
"peerDependencies": {
"mapbox-gl": "^3.0.0"
},
"devDependencies": {
"@typescript-eslint/parser": "^8.58.1",
"css-loader": "^6.11.0",
"eslint": "^8.57.1",
"eslint-config-standard": "^17.1.0",
"eslint-plugin-import": "^2.32.0",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-promise": "^6.6.0",
"file-loader": "^6.2.0",
"html-loader": "^5.1.0",
"html-webpack-plugin": "^5.6.6",
"mapbox-gl": "^3.21.0",
"mini-css-extract-plugin": "^2.10.2",
"style-loader": "^3.3.1",
"ts-loader": "^9.5.7",
"typescript": "^6.0.2",
"webpack": "^5.106.1",
"webpack-cli": "^6.0.1",
"webpack-dev-server": "^5.2.3"
}
}