-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
65 lines (65 loc) · 1.84 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
{
"name": "fastify-formidable",
"version": "3.0.2",
"description": "",
"main": "lib/index.js",
"types": "lib/index.d.ts",
"exports": {
".": {
"import": "./lib/mjs/index.js",
"require": "./lib/index.js"
}
},
"directories": {
"lib": "lib"
},
"scripts": {
"clean": "npx rimraf \"lib/**/*.js\" \"lib/**/*.map\" \"lib/**/*.d.ts\" \"test/**/*.js\" \"test/**/*.map\" \"test/**/*.d.ts\"",
"lint": "eslint --ext .ts lib test",
"lint:fix": "npm run lint -- --fix",
"prebuild": "npm run clean",
"build": "npm run build:mjs && npm run build:cjs",
"build:cjs": "tsc -p tsconfig.cjs.json",
"build:mjs": "tsc -p tsconfig.mjs.json && tsc-alias -p tsconfig.mjs.json",
"unit": "tap",
"test": "npm run lint && npm run unit",
"coverage": "tap --coverage-report=lcovonly",
"prepublishOnly": "npm run build",
"postpublish": "npm run clean"
},
"publishConfig": {
"access": "public",
"registry": "https://registry.npmjs.org"
},
"repository": {
"type": "git",
"url": "https://github.com/climba03003/fastify-formidable"
},
"author": "KaKa",
"license": "GPL-3.0",
"dependencies": {
"@types/formidable": "^2.0.5",
"fastify-plugin": "^4.5.1",
"formidable": "^2.0.0"
},
"devDependencies": {
"@fastify/swagger": "^8.8.0",
"@types/node": "^20.4.2",
"@types/tap": "^15.0.8",
"@typescript-eslint/eslint-plugin": "5.62.0",
"@typescript-eslint/parser": "5.62.0",
"ajv": "^8.12.0",
"eslint": "^8.45.0",
"eslint-config-standard-with-typescript": "^37.0.0",
"eslint-plugin-import": "^2.27.5",
"eslint-plugin-n": "^16.0.1",
"eslint-plugin-promise": "^6.1.1",
"fastify": "^4.20.0",
"form-data": "^4.0.0",
"tap": "^16.3.7",
"ts-node": "^10.9.1",
"tsc-alias": "^1.8.7",
"typescript": "~5.1.6",
"undici": "^5.22.1"
}
}