forked from k-yle/osm-conditional-restrictions
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
46 lines (46 loc) · 1.17 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": "osm-conditional-restrictions",
"version": "0.0.0",
"contributors": [
"Kyle Hensel (https://github.com/k-yle)"
],
"description": "📅🔒 Javascript/Typescript parser for OpenStreetMap conditional restrictions",
"type": "module",
"exports": "./dist/index.js",
"types": "dist/index.d.ts",
"license": "MIT",
"files": [
"dist"
],
"keywords": [
"osm",
"openstreetmap",
"conditional restrictions",
"access restrictions",
"conditions"
],
"repository": "https://github.com/k-yle/osm-conditional-restrictions",
"scripts": {
"build": "rm -rf dist && tsc --emitDeclarationOnly && rm -rf dist/__tests__ && esbuild ./src --bundle --minify --sourcemap --format=esm --outfile=dist/index.js",
"lint": "eslint --ignore-path .gitignore .",
"test": "vitest",
"trypublish": "npm publish || true"
},
"engines": {
"node": ">=18"
},
"devDependencies": {
"@types/node": "^20.6.0",
"esbuild": "^0.19.3",
"eslint": "^8.49.0",
"eslint-config-kyle": "^14.10.0",
"typescript": "^5.2.2",
"vitest": "^0.34.4"
},
"eslintConfig": {
"extends": "kyle"
},
"prettier": {
"singleQuote": true
}
}