-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
73 lines (73 loc) · 1.8 KB
/
package.json
File metadata and controls
73 lines (73 loc) · 1.8 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
{
"name": "@koopjs/geoservice-utils",
"version": "3.1.0",
"description": "A set of utilities for working with Geoservice requests and parameters.",
"main": "dist/index.js",
"scripts": {
"clean": "rimraf dist",
"build": "npm run clean && npm run tsc",
"tsc": "tsc",
"lint": "eslint src --ext .ts",
"lint:ci": "eslint src --ext .ts --rule linebreak-style:0 ",
"test": "jest",
"test:cov": "jest --coverage",
"prepare": "npm run build",
"postpublish": "gh-release"
},
"author": "",
"license": "Apache-2.0",
"devDependencies": {
"@types/jest": "^29.5.5",
"@types/lodash": "^4.14.199",
"@typescript-eslint/eslint-plugin": "^6.7.4",
"@typescript-eslint/parser": "^6.7.4",
"eslint": "^8.51.0",
"eslint-plugin-prettier": "^5.0.0",
"gh-release": "^7.0.2",
"jest": "^29.7.0",
"rimraf": "^5.0.5",
"ts-jest": "^29.1.1",
"typescript": "^5.2.2"
},
"dependencies": {
"@alloc/quick-lru": "^5.2.0",
"@esri/arcgis-rest-types": "^3.7.0",
"@esri/proj-codes": "^3.1.0",
"@terraformer/arcgis": "^2.1.2",
"@turf/bbox-polygon": "^6.5.0",
"@types/geojson": "^7946.0.11",
"joi": "^17.11.0",
"lodash": "^4.17.21",
"proj4": "^2.9.0",
"wkt-parser": "^1.3.3"
},
"jest": {
"moduleFileExtensions": [
"js",
"json",
"ts"
],
"testRegex": ".*\\.spec\\.ts$",
"transform": {
"^.+\\.(t|j)s$": "ts-jest"
},
"collectCoverageFrom": [
"src/**/*.ts"
],
"coverageDirectory": "./coverage",
"testEnvironment": "node",
"coveragePathIgnorePatterns": [
"node_modules",
"test-config",
"interfaces",
"src/index.ts"
],
"roots": [
"src"
]
},
"files": [
"dist"
],
"repository": "https://github.com/koopjs/geoservice-utils"
}