This repository has been archived by the owner on Dec 5, 2024. It is now read-only.
forked from fastify/fastify-autoload
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
94 lines (94 loc) · 2.72 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
85
86
87
88
89
90
91
92
93
94
{
"name": "@fastify/autoload",
"version": "6.0.0-pre.fv5.1",
"description": "Require all plugins in a directory",
"main": "index.js",
"type": "commonjs",
"types": "types/index.d.ts",
"scripts": {
"lint": "standard | snazzy",
"lint:fix": "standard --fix | snazzy",
"test": "npm run typescript && npm run typescript:jest && npm run typescript:swc-node-register && npm run typescript:tsm && npm run typescript:tsx && npm run typescript:vitest && npm run typescript:esbuild && npm run unit",
"typescript": "tsd",
"typescript:jest": "jest",
"typescript:esm": "node scripts/unit-typescript-esm.js",
"typescript:swc-node-register": "node scripts/unit-typescript-swc-node-register.js",
"typescript:tsm": "node scripts/unit-typescript-tsm.js",
"typescript:tsx": "node scripts/unit-typescript-tsx.js",
"typescript:esbuild": "node scripts/unit-typescript-esbuild.js",
"typescript:vitest": "vitest run",
"typescript:vitest:dev": "vitest",
"unit": "node scripts/unit.js",
"unit:with-modules": "tap plugin rm @tapjs/typescript && tap plugin list && tap build && tap test/issues/*/test.js test/commonjs/*.js test/module/*.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/fastify/fastify-autoload.git"
},
"keywords": [
"fastify",
"require",
"folder",
"directory",
"plugin",
"plugins",
"automatically",
"load",
"auto"
],
"author": "Matteo Collina <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/fastify/fastify-autoload/issues"
},
"homepage": "https://github.com/fastify/fastify-autoload#readme",
"devDependencies": {
"@fastify/pre-commit": "^2.1.0",
"@fastify/url-data": "^6.0.0-pre.fv5.1",
"@swc-node/register": "^1.9.1",
"@swc/core": "^1.5.25",
"@types/jest": "^29.5.12",
"@types/node": "^22.0.0",
"@types/tap": "^15.0.11",
"esbuild": "^0.23.0",
"esbuild-register": "^3.5.0",
"fastify": "^5.0.0-alpha.3",
"fastify-plugin": "^5.0.0-pre.fv5.1",
"jest": "^29.7.0",
"snazzy": "^9.0.0",
"standard": "^17.1.0",
"tap": "^19.0.2",
"ts-jest": "^29.1.4",
"ts-node": "^10.9.2",
"ts-node-dev": "^2.0.0",
"tsd": "^0.31.1",
"tsm": "^2.3.0",
"tsx": "^4.15.7",
"typescript": "^5.4.5",
"vite": "^5.2.12",
"vitest": "^2.0.3"
},
"standard": {
"ignore": [
"test/*/*-error/lib/a.js"
]
},
"jest": {
"preset": "ts-jest",
"testEnvironment": "node",
"rootDir": "./test/typescript-jest",
"testMatch": [
"**/*.test.ts"
],
"transform": {
"^.+\\.(ts|tsx)$": "ts-jest"
}
},
"publishConfig": {
"access": "public"
},
"pre-commit": [
"lint",
"test"
]
}