-
Notifications
You must be signed in to change notification settings - Fork 126
Expand file tree
/
Copy pathpackage.json
More file actions
158 lines (158 loc) · 5.87 KB
/
package.json
File metadata and controls
158 lines (158 loc) · 5.87 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
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
{
"name": "@esri/arcgis-rest-js",
"version": "4.0.0",
"description": "Compact, modular JavaScript wrappers for the ArcGIS REST API that run in Node.js and modern browsers.",
"license": "Apache-2.0",
"type": "module",
"private": true,
"scripts": {
"build": "npm run build:esm && npm run build:cjs && npm run build:bundled",
"build:esm": "ultra --no-pretty --silent --build -r --filter \"packages/*\" build:esm",
"build:cjs": "ultra --no-pretty --silent --build -r --filter \"packages/*\" build:cjs",
"build:bundled": "ultra --build -r --filter \"packages/*\" build:bundled",
"dev:esm": "ultra -r --filter \"packages/*\" dev:esm",
"dev:cjs": "ultra -r --filter \"packages/*\" dev:cjs",
"dev:bundled": "ultra -r --filter \"packages/*\" dev:bundled",
"clean": "trash packages/*/dist/",
"precommit": "lint-staged",
"docs:build": "rimraf docs/build && unzip -d docs/build docs/v3-archive.zip && npm run typedoc",
"lint": "eslint",
"srihash": "node scripts/generate-sri-hashes.js",
"test": "npm run lint && npm run test:compile && vitest --config=vitest.config.js --run --project=node --project=headless",
"test:compile": "npm run build:esm",
"test:all": "vitest --config=vitest.config.js --run",
"test:browsers": "vitest --config=vitest.config.js --run --project=browser",
"test:ci": "vitest --config=vitest.config.js --run --project=node --project=headless",
"test:headless": "vitest --config=vitest.config.js --run --project=headless",
"test:chrome": "vitest --config=vitest.config.js --run --project=browser --browser=chromium",
"test:chrome:debug": "vitest --config=vitest.config.js --inspect --no-file-parallelism --project=browser --browser=chromium",
"test:firefox": "vitest --config=vitest.config.js --run --project=browser --browser=firefox",
"test:webkit": "vitest --config=vitest.config.js --run --project=browser --browser=webkit",
"test:node": "vitest --config=vitest.config.js --run --project=node",
"test:node:debug": "vitest --config=vitest.config.js --inspect --ui --no-file-parallelism --project=node",
"test:node:live": "vitest --config=vitest.config.js --project=nodeLive",
"test:headless:live": "vitest --config=vitest.config.js --project=headlessLive",
"prettify": "prettier --write --parser typescript --tab-width 2 --use-tabs false \"packages/**/+(src|test)/**/*.ts\"",
"typedoc": "typedoc --options ./typedoc.json",
"prettify:packages-jsons": "prettier-package-json --write ./**/*/package.json",
"serve": "node scripts/run-demo-server.js"
},
"engines": {
"npm": ">=7.0.0",
"node": ">=12.20.0"
},
"eslintIgnore": [
"packages/**/test",
"packages/**/dist"
],
"lint-staged": {
"**/*/package.json": [
"prettier-package-json --write",
"git add"
],
"*.ts": [
"prettier --write --parser typescript --tab-width 2 --use-tabs false",
"eslint",
"git add"
]
},
"husky": {
"hooks": {
"pre-commit": "npm run precommit"
}
},
"devDependencies": {
"@changesets/cli": "^2.29.8",
"@eslint/compat": "^2.0.0",
"@eslint/js": "^9.39.1",
"@playwright/test": "^1.56.1",
"@rollup/plugin-node-resolve": "^16.0.3",
"@rollup/plugin-terser": "^0.4.4",
"@rollup/plugin-typescript": "^12.3.0",
"@types/fetch-mock": "^7.3.5",
"@types/node": "^22.0.0",
"@vitest/browser": "^4.0.5",
"@vitest/browser-playwright": "^4.0.5",
"@vitest/browser-preview": "^4.0.5",
"@vitest/coverage-istanbul": "^4.0.5",
"@vitest/ui": "^4.0.5",
"babel-preset-env": "^1.7.0",
"browser-sync": "^2.27.9",
"eslint": "^9.39.1",
"eslint-config-prettier": "^10.1.8",
"eslint-plugin-import": "^2.32.0",
"fetch-mock": "^9.0.0",
"gh-pages": "^1.1.0",
"globby": "^12.0.2",
"husky": "^4.3.0",
"lint-staged": "^4.3.0",
"npm-run-all": "^4.1.5",
"node-fetch": "^3.3.2",
"pbf": "^4.0.1",
"prettier": "^2.3.1",
"prettier-package-json": "^2.6.0",
"rimraf": "^2.6.2",
"rollup": "^4.5.3",
"rollup-plugin-filesize": "^9.0.2",
"sri-toolbox": "0.2.0",
"trash-cli": "^4.0.0",
"typedoc": "^0.28.14",
"typescript": "^5.9.3",
"typescript-eslint": "^8.47.0",
"ultra-runner": "^3.10.5",
"vite": "^7.0.5",
"vitest": "^4.0.5"
},
"optionalDependencies": {
"@rollup/rollup-linux-x64-gnu": "4.9.5"
},
"contributors": [
"Anthony Lukach",
"Bill Reynolds <wreynolds@esri.com>",
"City of Vernonia GIS",
"Dave Bouwman <dbouwman@esri.com>",
"Enguerrand des Vaux",
"Gavin Rehkemper <grehkemper@esri.com>",
"Ian Trewella",
"Idi Eradiri <ieradiri@esri.com>",
"Jeff Jacobson",
"John Gravois <john@esri.com>",
"Junshan Liu <jliu@esri.com>",
"Max Payson <mpayson@esri.com>",
"Mike 'Jupe' Juniper <mjuniper@esri.com>",
"Mike Tschudi <mtschudi@esri.com>",
"Noah Mulfinger <nmulfinger@esri.com>",
"Patrick Arlt <parlt@esri.com> (http://patrickarlt.com/)",
"Richard Hincamp",
"Rowan Winsemius",
"Stephen Sylvia <ssylvia@esri.com>",
"Steven Kitterman <skitterman@esri.com>",
"Tom Wayson <twayson@esri.com>"
],
"homepage": "https://github.com/Esri/arcgis-rest-js#readme",
"repository": {
"type": "git",
"url": "git+https://github.com/Esri/arcgis-rest-js.git"
},
"bugs": {
"url": "https://github.com/Esri/arcgis-rest-js/issues"
},
"workspaces": [
"packages/arcgis-rest-request",
"packages/arcgis-rest-auth",
"packages/arcgis-rest-demographics",
"packages/arcgis-rest-elevation",
"packages/arcgis-rest-feature-service",
"packages/arcgis-rest-geocoding",
"packages/arcgis-rest-portal",
"packages/arcgis-rest-places",
"packages/arcgis-rest-routing",
"packages/arcgis-rest-fetch",
"packages/arcgis-rest-form-data",
"packages/arcgis-rest-developer-credentials",
"packages/arcgis-rest-basemap-sessions"
],
"volta": {
"node": "22.17.1"
}
}