-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
35 lines (35 loc) · 872 Bytes
/
package.json
File metadata and controls
35 lines (35 loc) · 872 Bytes
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
{
"name": "web-mapping-components",
"version": "1.0.0",
"description": "A collection of web mapping components used by various map viewers",
"private": true,
"main": "./src/main.js",
"type": "module",
"dependencies": {
"npm": "^9.6.7"
},
"devDependencies": {
"eslint": "^8.41.0",
"jsdom": "^22.1.0",
"mocha": "^10.2.0",
"rollup": "^3.23.0",
"rollup-plugin-css-only": "^4.3.0"
},
"scripts": {
"build": "rollup -c ./config/web-mapping-components.rollup.js",
"test": "mocha",
"lint": "eslint ./src/"
},
"homepage": "https://github.com/CSBP-CPSE/web-mapping-components",
"repository": {
"type": "git",
"url": "git+https://github.com/CSBP-CPSE/web-mapping-components.git"
},
"keywords": [
"mapbox",
"maplibre"
],
"bugs": {
"url": "https://github.com/CSBP-CPSE/web-mapping-components/issues"
}
}