-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
55 lines (55 loc) · 1.55 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
{
"name": "@dwayneparton/geojson-to-gpx",
"version": "0.2.0",
"description": "Converts GeoJson to GPX",
"type": "module",
"main": "dist/index.js",
"browser": "dist/index.js",
"module": "dist/index.js",
"types": "./dist/index.d.ts",
"files": [
"dist"
],
"scripts": {
"start": "npx tsc -w",
"build": "npx tsc",
"test": "vitest run --coverage",
"test:watch": "vitest --coverage",
"lint": "npx eslint ./src",
"changeset": "npx changeset"
},
"keywords": [
"geojson",
"gpx"
],
"repository": {
"type": "git",
"url": "https://github.com/dwayneparton/geojson-to-gpx.git"
},
"bugs": {
"url": "https://github.com/dwayneparton/geojson-to-gpx/issues"
},
"homepage": "https://github.com/dwayneparton/geojson-to-gpx",
"author": "Dwayne Parton",
"license": "MIT",
"browserslist": [
"defaults and supports es6-module"
],
"devDependencies": {
"@changesets/cli": "^2.27.1",
"@types/geojson": "^7946.0.14",
"@types/jest": "^29.5.12",
"@typescript-eslint/eslint-plugin": "^6.21.0",
"@typescript-eslint/parser": "^6.21.0",
"@vitest/coverage-istanbul": "^1.4.0",
"@xmldom/xmldom": "^0.8.10",
"babel-loader": "^9.1.3",
"browserslist": "^4.23.0",
"eslint": "^8.57.0",
"eslint-config-airbnb": "^19.0.4",
"jsdom": "^23.2.0",
"ts-node": "^10.9.2",
"typescript": "^4.9.5",
"vitest": "^1.0.4"
}
}