-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
29 lines (29 loc) · 817 Bytes
/
package.json
File metadata and controls
29 lines (29 loc) · 817 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
{
"name": "@airportmap/map",
"private": true,
"license": "MIT",
"author": {
"name": "komed3 (Paul Köhler)",
"email": "[email protected]",
"url": "https://komed3.de"
},
"type": "commonjs",
"types": "dist/index.d.ts",
"main": "dist/index.js",
"scripts": {
"alias": "tsc-alias -p tsconfig.build.json",
"build": "npm update && tsc -b tsconfig.build.json --verbose && npm run alias",
"build:ci": "tsc -b tsconfig.build.json && npm run alias",
"build:safe": "npm run lint && npm run build:ci",
"lint": "tsc --p tsconfig.lint.json",
"prepare": "npm run build:safe"
},
"dependencies": {
"deepmerge": "^4.3.1",
"leaflet": "^2.0.0-alpha.1"
},
"devDependencies": {
"@airportmap/types": "github:airportmap/types",
"@types/leaflet": "^1.9.21"
}
}