-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
84 lines (84 loc) · 2.38 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
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
{
"name": "then-busboy",
"description": "Promise-based wrapper around Busboy. Processes multipart/form-data request body and returns it in a single object.",
"version": "5.2.1",
"author": "Nick K. <[email protected]>",
"license": "MIT",
"repository": "octet-stream/then-busboy",
"main": "lib/cjs/index.js",
"types": "@type/index.d.ts",
"exports": {
"import": "./lib/esm/index.js",
"require": "./lib/cjs/index.js",
"types": "./@type/index.d.ts"
},
"engines": {
"node": ">= 12.4"
},
"keywords": [
"multipart",
"promise",
"async",
"formdata",
"form-data",
"file",
"upload",
"form-data",
"body"
],
"scripts": {
"eslint": "eslint lib/**/*.ts",
"staged": "lint-staged",
"coverage": "c8 npm test",
"ci": "c8 npm test && c8 report --reporter=json",
"build:esm": "ttsc --project tsconfig.esm.json",
"build:cjs": "ttsc --project tsconfig.cjs.json",
"build": "npm run build:esm && npm run build:cjs",
"test": "ava --fail-fast",
"cleanup": "rimraf @type \"lib/**/*.js\"",
"prepare": "npm run cleanup && npm run build",
"postinstall": "husky install",
"prepublishOnly": "pinst --disable",
"postpublish": "pinst --enable"
},
"dependencies": {
"@types/busboy": "1.5.0",
"busboy": "1.6.0",
"formdata-node": "4.3.2",
"http-errors": "2.0.0",
"lodash.merge": "4.6.2",
"nanoid": "3.3.4",
"object-deep-from-entries": "0.4.0"
},
"devDependencies": {
"@octetstream/eslint-config": "5.0.0",
"@types/http-errors": "1.8.2",
"@types/lodash.merge": "4.6.7",
"@types/node": "17.0.35",
"@types/supertest": "2.0.12",
"@typescript-eslint/eslint-plugin": "4.33.0",
"@typescript-eslint/parser": "4.33.0",
"@zoltu/typescript-transformer-append-js-extension": "1.0.1",
"ava": "4.2.0",
"c8": "7.11.3",
"eslint": "7.32.0",
"eslint-config-airbnb-typescript": "12.3.1",
"eslint-plugin-ava": "12.0.0",
"eslint-plugin-jsx-a11y": "6.4.1",
"eslint-plugin-react": "7.26.1",
"form-data-encoder": "1.7.2",
"husky": "8.0.1",
"lint-staged": "12.4.2",
"lowercase-keys": "2.0.0",
"pinst": "3.0.0",
"promise-fs": "2.1.1",
"proxyquire": "2.1.3",
"rimraf": "^3.0.2",
"sinon": "14.0.0",
"supertest": "6.2.3",
"ts-node": "10.8.0",
"ttypescript": "1.5.13",
"typed-emitter": "2.1.0",
"typescript": "4.6.4"
}
}