-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
62 lines (62 loc) · 1.52 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
{
"name": "@stadtulm/leaflet-gbfs",
"version": "1.4.0",
"description": "Show gbfs data as Leaflet layer",
"source": "src/L.GBFS.js",
"main": "dist/L.GBFS.js",
"module": "dist/L.GBFS.esm.js",
"esmodule": "dist/L.GBFS.esm.js",
"directories": {
"example": "examples"
},
"files": [
"dist"
],
"repository": {
"type": "git",
"url": "git+https://github.com/stadtulm/leaflet-gbfs.git"
},
"syntax": {
"esmodules": "gbfs.esm.js"
},
"scripts": {
"dev": "microbundle watch --globals leaflet=L --css-modules true -f modern,iife --name L.GBFS --no-compress",
"build": "microbundle build --globals leaflet=L --css-modules true -f modern,iife --name L.GBFS",
"lint": "eslint --ignore-path .gitignore .",
"release": "npm run build && cp src/*.css dist/ && cp -r src/images dist/ && npm publish"
},
"keywords": [
"leaflet",
"GBFS"
],
"license": "MIT",
"bugs": {
"url": "https://github.com/stadtulm/leaflet-gbfs/issues"
},
"homepage": "https://github.com/stadtulm/leaflet-gbfs",
"devDependencies": {
"eslint": "^6.8.0",
"eslint-config-airbnb-base": "^14.2.0",
"eslint-plugin-import": "^2.22.0",
"leaflet": "^1.5.1",
"lint-staged": "^9.5.0",
"microbundle": "0.12.3",
"yorkie": "^2.0.0"
},
"dependencies": {},
"peerDependencies": {
"leaflet": "1.5"
},
"externals": {
"leaflet": "L"
},
"gitHooks": {
"pre-commit": "lint-staged"
},
"lint-staged": {
"*.js": "eslint"
},
"browserslist": [
"last 1 Chrome versions"
]
}