-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
60 lines (60 loc) · 1.71 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
{
"name": "fastify-delay-request",
"version": "1.0.0",
"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-delay-request"
},
"author": "KaKa",
"license": "GPL-3.0",
"dependencies": {
"fastify-plugin": "^4.0.0",
"p-queue": "^7.3.3"
},
"devDependencies": {
"@types/node": "^18.0.0",
"@types/tap": "^15.0.5",
"@typescript-eslint/eslint-plugin": "^5.30.6",
"@typescript-eslint/parser": "5.45.1",
"eslint": "^8.19.0",
"eslint-config-standard-with-typescript": "^23.0.0",
"eslint-plugin-import": "^2.26.0",
"eslint-plugin-n": "^15.2.4",
"eslint-plugin-promise": "^6.0.0",
"fastify": "^4.0.0",
"tap": "^16.0.0",
"ts-node": "^10.4.0",
"tsc-alias": "^1.8.1",
"typescript": "~4.7.0"
}
}