@esri/arcgis-rest-form-data 4.0.0-beta.1 → 4.8.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (2) hide show
  1. package/README.md +16 -0
  2. package/package.json +21 -1
package/README.md CHANGED
@@ -13,3 +13,19 @@ The `package.json` contains fields for the following:
13
13
  - `import` - ESM module exposing `formdata-node`.
14
14
  - `require` - CJS module exposing `formdata-node`.
15
15
  - `default` - ESM module exposing browser globals.
16
+
17
+ Copyright © 2017-2022 Esri
18
+
19
+ Licensed under the Apache License, Version 2.0 (the "License");
20
+ you may not use this file except in compliance with the License.
21
+ You may obtain a copy of the License at
22
+
23
+ > http://www.apache.org/licenses/LICENSE-2.0
24
+
25
+ Unless required by applicable law or agreed to in writing, software
26
+ distributed under the License is distributed on an "AS IS" BASIS,
27
+ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
28
+ See the License for the specific language governing permissions and
29
+ limitations under the License.
30
+
31
+ A copy of the license is available in the repository's [LICENSE](../../LICENSE) file.
package/package.json CHANGED
@@ -1,6 +1,14 @@
1
1
  {
2
2
  "name": "@esri/arcgis-rest-form-data",
3
- "version": "4.0.0-beta.1",
3
+ "version": "4.8.0",
4
+ "license": "Apache-2.0",
5
+ "keywords": [
6
+ "ES6",
7
+ "Node",
8
+ "browsers",
9
+ "form data",
10
+ "ponyfill"
11
+ ],
4
12
  "type": "commonjs",
5
13
  "module": "browser-ponyfill.mjs",
6
14
  "browser": "browser-ponyfill.js",
@@ -15,7 +23,19 @@
15
23
  "./package.json": "./package.json"
16
24
  },
17
25
  "types": "index.types.d.ts",
26
+ "files": [
27
+ "browser-ponyfill.js",
28
+ "browser-ponyfill.mjs",
29
+ "index.types.d.ts",
30
+ "node-ponyfill.js",
31
+ "node-ponyfill.mjs"
32
+ ],
18
33
  "dependencies": {
19
34
  "formdata-node": "^4.1.0"
35
+ },
36
+ "repository": {
37
+ "type": "git",
38
+ "url": "git+https://github.com/Esri/arcgis-rest-js.git",
39
+ "directory": "packages/arcgis-rest-form-data"
20
40
  }
21
41
  }