-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathpackage.json
46 lines (46 loc) · 1.32 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
{
"name": "maplibre-gl-basemaps",
"version": "0.1.2",
"main": "./lib/index.js",
"description": "Basemaps Control for MapLibre GL",
"author": "Kaveh Karimi <[email protected]>",
"homepage": "https://github.com/ka7eh/maplibre-gl-basemaps",
"repository": "https://github.com/ka7eh/maplibre-gl-basemaps",
"keywords": [
"maplibre-gl",
"mapbox-gl",
"basemaps"
],
"license": "ISC",
"scripts": {
"lint": "eslint src",
"lint:fix": "npm run lint -- --fix",
"watch": "rollup -c --watch & sass --watch src/index.scss:lib/basemaps.css",
"build": "rollup -c --compact && sass src/index.scss:lib/basemaps.css",
"examples": "npm run build & node server.js",
"dev": "node server.js & npm run watch"
},
"devDependencies": {
"@rollup/plugin-typescript": "^8.3.0",
"@typescript-eslint/eslint-plugin": "^5.4.0",
"@typescript-eslint/parser": "^5.4.0",
"eslint": "^8.3.0",
"eslint-config-airbnb-base": "^15.0.0",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-import": "^2.25.3",
"eslint-plugin-prettier": "^4.0.0",
"gh-pages": "^3.2.3",
"maplibre-gl": "^2.1.6",
"prettier": "^2.4.1",
"rollup": "^2.60.0",
"sass": "^1.43.4",
"tslib": "^2.3.1",
"typescript": "^4.5.2"
},
"peerDependencies": {
"maplibre-gl": ">=1"
},
"files": [
"lib"
]
}