-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
86 lines (86 loc) · 2.52 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
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
{
"name": "@koopjs/koop-provider-hub-search",
"version": "3.0.11",
"description": "A Koop provider plugin to use the ArcGIS Hub Search API as a data source",
"main": "src/index.js",
"engines": {
"node": ">= 12.0 <15"
},
"repository": {
"type": "git",
"url": "git@github.com:koopjs/koop-provider-hub-search.git"
},
"devDependencies": {
"@types/express": "^4.17.13",
"@types/faker": "^5.5.7",
"@types/geojson": "^7946.0.10",
"@types/jest": "~26.0.23",
"@types/node": "~14.14.45",
"@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",
"fetch-mock-jest": "^1.5.1",
"geojson-validation": "^1.0.2",
"jest": "~27.0.6",
"prettier": "~2.3.2",
"rimraf": "~3.0.2",
"ts-jest": "~27.0.3",
"tsutils": "~3.21.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 && coverage-badges --output ./coverage.svg",
"test:watch": "jest --watch",
"prepack": "cp ../README.md ../LICENSE ."
},
"jest": {
"collectCoverageFrom": [
"<rootDir>/packages/**/*.{tsx,ts}",
"!**/*.{js,d.ts}"
],
"coverageReporters": [
"lcov",
"json-summary"
]
},
"author": "Andrew Tate <atate@esri.com>",
"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/lodash": "^4.14.171",
"geojson-rewind": "^0.3.1",
"isomorphic-fetch": "^3.0.0",
"isomorphic-form-data": "^2.0.0",
"lodash": "^4.17.21",
"tslib": "~2.3.0"
},
"volta": {
"node": "14.16.1",
"npm": "8.3.0"
},
"overrides": {
"geojson-rewind": {
"minimist": "^1.2.8"
}
}
}