-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
77 lines (77 loc) · 1.92 KB
/
package.json
File metadata and controls
77 lines (77 loc) · 1.92 KB
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
71
72
73
74
75
76
77
{
"name": "@simwrapper/gmns",
"description": "GMNS: the General Modeling Network Specification. Load GMNS networks from cmdline or in the browser. Converts GMNS to GeoJSON.",
"version": "v0.1.4",
"private": false,
"keywords": [
"gmns",
"simwrapper",
"modeling",
"network"
],
"type": "module",
"author": {
"name": "Billy Charlton",
"url": "https://github.com/billyc"
},
"homepage": "https://github.com/simwrapper/gmns.git",
"repository": {
"type": "git",
"url": "git+https://github.com/simwrapper/gmns.git"
},
"license": "MIT",
"scripts": {
"build": "tsup src/index.ts --format cjs,esm --dts --sourcemap --clean",
"test": "vitest run",
"test:watch": "vitest",
"test:coverage": "vitest run --coverage",
"lint": "eslint .",
"format": "prettier --write .",
"prepare": "npm run build",
"prepublishOnly": "npm test",
"xprepublishOnly": "npm test && npm run lint"
},
"main": "dist/index.js",
"module": "dist/index.mjs",
"types": "dist/index.d.ts",
"exports": {
".": {
"import": "./dist/index.js",
"require": "./dist/index.cjs"
}
},
"bin": {
"gmns": "./cli.js"
},
"devDependencies": {
"@eslint/js": "^9.20.0",
"@types/jszip": "^3.4.0",
"@types/proj4": "^2.5.6",
"@types/terraformer__wkt": "^2.0.3",
"@typescript-eslint/eslint-plugin": "^8.23.0",
"@typescript-eslint/parser": "^8.23.0",
"@vitest/coverage-v8": "^3.0.5",
"eslint": "^9.20.0",
"prettier": "^3.5.0",
"tsup": "^8.3.6",
"typescript": "^5.7.3",
"typescript-eslint": "^8.23.0",
"vitest": "^3.0.5"
},
"files": [
"src/index.ts",
"dist"
],
"engines": {
"node": ">=20.6.0"
},
"dependencies": {
"@simwrapper/papaparse": "^5.3.3",
"@terraformer/wkt": "^2.2.1",
"@turf/meta": "^7.2.0",
"commander": "^13.1.0",
"epsg-index": "^2.0.0",
"jszip": "^3.10.1",
"proj4": "^2.15.0"
}
}