-
Notifications
You must be signed in to change notification settings - Fork 8
/
package.json
70 lines (70 loc) · 2.2 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
63
64
65
66
67
68
69
70
{
"name": "@openaip/openair-parser",
"version": "1.19.10",
"description": "OpenAIR format parser. Parses openAIR formatted string and outputs it in JSON or GeoJSON.",
"keywords": [
"openaip",
"openair",
"parser",
"json",
"geojson"
],
"authors": [
{
"name": "Stephan Besser",
"email": "[email protected]",
"homepage": "https://www.openaip.net",
"role": "Lead developer"
}
],
"main": "index.js",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/openAIP/openaip-openair-parser.git"
},
"publishConfig": {
"registry": "https://npm.pkg.github.com/"
},
"bugs": {
"url": "https://github.com/openAIP/openaip-openair-parser/issues"
},
"homepage": "https://github.com/openAIP/openaip-openair-parser#readme",
"scripts": {
"test": "vitest run --coverage",
"lint": "eslint -c .eslintrc.js .",
"run-security-audit": "npm audit --omit=dev",
"format": "prettier --plugin-search-dir . --write .",
"update-packages": "ncu --target minor --upgrade --reject jsts && npm install && npm audit fix"
},
"dependencies": {
"@mapbox/geojson-rewind": "^0.5.2",
"@openaip/coordinate-parser": "^0.9.4",
"@turf/turf": "^6.5.0",
"check-types": "^11.2.3",
"clean-deep": "^3.4.0",
"jsts": "<=2.6.1",
"n-readlines": "^1.0.3",
"sprintf-js": "^1.1.3",
"uuid": "^8.3.2"
},
"devDependencies": {
"@babel/eslint-parser": "^7.25.9",
"@types/check-types": "^7.3.7",
"@types/uuid": "^8.3.4",
"@vitest/coverage-v8": "^2.1.8",
"@vitest/ui": "^2.1.8",
"commander": "^2.20.3",
"eslint": "^8.57.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-import": "^2.31.0",
"eslint-plugin-only-warn": "^1.1.0",
"eslint-plugin-prettier": "^5.2.1",
"nodemon": "^3.1.7",
"npm-check-updates": "^16.14.20",
"prettier": "^3.4.2",
"version-bump-prompt": "^6.1.0",
"vite": "^5.4.11",
"vitest": "^2.1.8"
}
}