-
Notifications
You must be signed in to change notification settings - Fork 353
Expand file tree
/
Copy pathpackage.json
More file actions
61 lines (61 loc) · 1.85 KB
/
Copy pathpackage.json
File metadata and controls
61 lines (61 loc) · 1.85 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
{
"name": "proj4",
"version": "2.22.1-alpha",
"description": "Proj4js is a JavaScript library to transform point coordinates from one coordinate system to another, including datum transformations.",
"homepage": "https://proj4js.github.io/proj4js/",
"main": "dist/proj4-src.js",
"module": "lib/index.js",
"types": "dist/index.d.ts",
"funding": "https://github.com/sponsors/ahocevar",
"scripts": {
"prepare": "npm run build",
"build": "node scripts/build.mjs && npm run rollup",
"build:custom": "node scripts/build.mjs",
"prerollup": "npm run types",
"rollup": "rollup -c",
"pretest": "npm run lint && npm run typecheck",
"lint": "eslint *.js *.mjs scripts lib test",
"typecheck": "tsc --noEmit",
"format": "npm run lint -- --fix",
"test": "npm run build && npm run test:all",
"test:coverage": "vitest run --coverage",
"test:all": "npm run test:node && npm run test:browser",
"test:node": "vitest run",
"test:browser": "vitest run --browser.enabled",
"types": "tsc"
},
"repository": {
"type": "git",
"url": "git+https://github.com/proj4js/proj4js.git"
},
"author": "",
"license": "MIT",
"devDependencies": {
"@rollup/plugin-commonjs": "^28.0.3",
"@rollup/plugin-json": "^6.1.0",
"@rollup/plugin-node-resolve": "^15.2.3",
"@rollup/plugin-replace": "^5.0.5",
"@rollup/plugin-terser": "^1.0.0",
"@stylistic/eslint-plugin": "^4.2.0",
"@vitest/browser": "^4.1.2",
"@vitest/browser-playwright": "^4.1.2",
"@vitest/coverage-v8": "^4.1.2",
"eslint": "^9.25.1",
"geotiff": "^3.0.5",
"rollup": "^4.9.6",
"typescript": "^5.8.3",
"vitest": "^4.1.2"
},
"peerDependencies": {
"geotiff": "*"
},
"peerDependenciesMeta": {
"geotiff": {
"optional": true
}
},
"dependencies": {
"mgrs": "1.0.0",
"wkt-parser": "^1.5.5"
}
}