forked from mhart/aws4fetch
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
61 lines (61 loc) · 1.73 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
51
52
53
54
55
56
57
58
59
60
61
{
"name": "aws4fetch",
"version": "1.0.19",
"description": "A compact AWS client for modern JS environments",
"author": "Michael Hart <[email protected]> (https://github.com/mhart)",
"license": "MIT",
"repository": "github:mhart/aws4fetch",
"main": "dist/aws4fetch.cjs.js",
"module": "dist/aws4fetch.esm.js",
"browser": "dist/aws4fetch.umd.js",
"exports": {
".": {
"import": {
"types": "./dist/main.d.ts",
"default": "./dist/aws4fetch.esm.mjs"
},
"worker": {
"types": "./dist/main.d.ts",
"default": "./dist/aws4fetch.esm.js"
},
"browser": {
"types": "./dist/main.d.ts",
"default": "./dist/aws4fetch.umd.js"
},
"require": {
"types": "./dist/main.d.ts",
"default": "./dist/aws4fetch.cjs.js"
},
"default": {
"types": "./dist/main.d.ts",
"default": "./dist/aws4fetch.umd.js"
}
}
},
"types": "dist/main.d.ts",
"files": [
"dist"
],
"scripts": {
"declaration": "tsc -p declaration.tsconfig.json",
"build": "npm run declaration && rollup -c",
"prepare": "npm run build",
"lint": "eslint --ext .js,.cjs,.mjs .",
"format": "eslint --ext .js,.cjs,.mjs --fix .",
"test": "node test/test.js",
"test-node": "node test/node-es.mjs && node test/node-commonjs.js",
"integration": "node test/integration.js"
},
"devDependencies": {
"@types/node": "20.8.3",
"eslint": "^8.54.0",
"eslint-config-standard": "^17.1.0",
"eslint-plugin-import": "^2.29.0",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-promise": "^6.1.1",
"puppeteer": "^18.2.1",
"rollup": "^2.79.1",
"rollup-plugin-cleanup": "^3.2.1",
"typescript": "^4.9.5"
}
}