-
Notifications
You must be signed in to change notification settings - Fork 41
/
Copy pathpackage.json
34 lines (34 loc) · 973 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
{
"name": "aws4fetch",
"version": "1.0.6",
"description": "",
"main": "dist/aws4fetch.cjs.js",
"module": "dist/aws4fetch.esm.js",
"browser": "dist/aws4fetch.umd.js",
"types": "dist/aws4fetch.d.ts",
"author": "Michael Hart <michael.hart.au@gmail.com>",
"license": "MIT",
"devDependencies": {
"eslint": "^7.0.0",
"eslint-config-standard": "^14.1.1",
"eslint-plugin-import": "^2.20.2",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-promise": "^4.2.1",
"eslint-plugin-standard": "^4.0.1",
"puppeteer": "^3.1.0",
"rollup": "^2.10.5",
"rollup-plugin-cleanup": "^3.1.1",
"typescript": "^3.9.3"
},
"scripts": {
"declaration": "tsc -p declaration.tsconfig.json --outFile dist/aws4fetch.d.ts",
"build": "npm run declaration && rollup -c",
"prepare": "npm run build",
"lint": "eslint .",
"test": "node test/test.js",
"integration": "node test/integration.js"
},
"files": [
"dist"
]
}