-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
69 lines (69 loc) · 2.16 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
{
"name": "@koopjs/koop-provider-hub-search-ogc",
"version": "1.3.0",
"description": "A Koop provider plugin to use the Hub Search OGC API as a data source",
"main": "src/index.js",
"engines": {
"node": ">= 12.0"
},
"repository": {
"type": "git",
"url": "[email protected]:koopjs/koop-provider-hub-search-ogc.git"
},
"devDependencies": {
"@types/express": "^4.17.13",
"@types/jest": "~29.5.1",
"@types/node": "^14.18.11",
"@typescript-eslint/eslint-plugin": "~4.28.2",
"@typescript-eslint/parser": "~4.28.2",
"coverage-badges-cli": "^1.0.11",
"eslint": "~7.30.0",
"eslint-config-prettier": "~8.3.0",
"eslint-plugin-jest": "~24.3.6",
"faker": "^5.5.3",
"jest": "~29.5.0",
"prettier": "~2.3.2",
"rimraf": "~3.0.2",
"ts-jest": "~29.1.0",
"typescript": "~4.3.5"
},
"scripts": {
"start": "node build/src/index.js",
"dev": "npm run build && cd example-app && npm i && node src/index.js",
"clean": "rimraf coverage build tmp",
"prebuild": "rm -rf ./build && npm run lint",
"build": "npm run prebuild && tsc -p tsconfig.release.json",
"release": "npm run build && npm publish ./build --access=public",
"build:watch": "tsc -w -p tsconfig.release.json",
"lint": "eslint . --ext .ts,.tsx",
"test": "jest --coverage",
"test:cov": "jest --coverage && coverage-badges --output ./coverage.svg",
"test:watch": "jest --watch",
"prepack": "cp ../README.md ../LICENSE ."
},
"author": "",
"license": "Apache-2.0",
"dependencies": {
"@esri/arcgis-rest-auth": "^3.2.1",
"@esri/arcgis-rest-feature-layer": "^3.2.1",
"@esri/arcgis-rest-portal": "^3.2.1",
"@esri/arcgis-rest-request": "^3.2.1",
"@esri/hub-common": "^9.1.2",
"@esri/hub-initiatives": "^9.32.1",
"@esri/hub-search": "^9.1.2",
"@esri/hub-sites": "^12.3.2",
"@esri/hub-teams": "^9.32.1",
"@types/fs-extra": "^9.0.13",
"@types/lodash": "^4.14.171",
"axios": "^1.4.0",
"isomorphic-fetch": "^3.0.0",
"isomorphic-form-data": "^2.0.0",
"lodash": "^4.17.21",
"node-fetch": "^3.3.2",
"tslib": "~2.3.0"
},
"volta": {
"node": "20.18.2",
"npm": "10.9.2"
}
}