-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
50 lines (50 loc) · 1.29 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
{
"name": "query-all-features",
"version": "1.0.0",
"description": "Query all features of an ArcGIS Feature Service",
"type": "module",
"source": "src/index.js",
"exports": {
"require": "./dist/index.cjs",
"default": "./dist/index.modern.js"
},
"main": "./dist/index.cjs",
"module": "./dist/index.module.js",
"unpkg": "./dist/index.umd.js",
"files": [
"dist/*"
],
"scripts": {
"test": "node --experimental-vm-modules node_modules/jest/bin/jest.js",
"build": "microbundle build --globals @esri/arcgis-rest-request=arcgisRest,@esri/arcgis-rest-feature-service=arcgisRest",
"dev": "microbundle watch"
},
"repository": {
"type": "git",
"url": "git+https://github.com/gavinr/query-all-features.git"
},
"keywords": [
"arcgis",
"feature-service",
"arcgis-rest-api",
"arcgis-developers",
"arcgis-rest-js"
],
"author": "Gavin Rehkemper",
"license": "Apache-2.0",
"bugs": {
"url": "https://github.com/gavinr/query-all-features/issues"
},
"homepage": "https://github.com/gavinr/query-all-features#readme",
"devDependencies": {
"jest": "^28.0.3",
"microbundle": "^0.15.0"
},
"jest": {
"transform": {}
},
"dependencies": {
"@esri/arcgis-rest-feature-service": "^4",
"@esri/arcgis-rest-request": "^4"
}
}