-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
38 lines (38 loc) · 840 Bytes
/
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
{
"name": "@ssttevee/cfw-formdata-polyfill",
"type": "module",
"version": "0.2.1",
"description": "A polyfill for Request.prototype.formData on cloudflare workers",
"main": "index.js",
"files": [
"*.js",
"*.d.ts"
],
"scripts": {
"build": "tsc && rm lib/index.d.ts && mv lib/* .",
"clean": "rm *.js *.d.ts",
"prepack": "npm run build",
"postpack": "npm run clean"
},
"repository": {
"type": "git",
"url": "git+https://github.com/ssttevee/js-cfw-formdata-polyfill.git"
},
"keywords": [
"cloudflare",
"workers",
"cfw",
"formdata",
"polyfill",
"ponyfill"
],
"author": "ssttevee",
"license": "MIT",
"dependencies": {
"@ssttevee/multipart-parser": "^0.1.6",
"@ssttevee/u8-utils": "^0.1.3"
},
"devDependencies": {
"typescript": "^3.5.3"
}
}