-
Notifications
You must be signed in to change notification settings - Fork 11
Expand file tree
/
Copy pathpackage.json
More file actions
24 lines (24 loc) · 744 Bytes
/
package.json
File metadata and controls
24 lines (24 loc) · 744 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
{
"name": "miniprogram-fetch",
"version": "4.5.1",
"description": "Fetch API polyfill for Wechat MiniProgram",
"keywords": [
"fetch",
"miniprogram",
"promise",
"request"
],
"license": "Apache-2.0",
"author": "NewFuture",
"main": "dist/fetch.js",
"module": "es/fetch.js",
"typings": "dist/fetch.d.ts",
"scripts": {
"build": "tsc fetch.ts --moduleResolution node --target es6 --outDir dist -d",
"build:es5": "tsc fetch.ts --moduleResolution node --target es5 --outDir dist -d",
"build:es6": "tsc fetch.ts fetch.ts --moduleResolution node -m es6 --target es6 --outDir es"
},
"dependencies": {
"miniprogram-queue": "^4.5.1"
}
}