forked from fastify/fastify-autoload
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
84 lines (84 loc) · 2.24 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": "fastify-autoload",
"version": "3.10.0",
"description": "Require all plugins in a directory",
"main": "index.js",
"types": "fastify-autoload.d.ts",
"scripts": {
"lint": "standard | snazzy",
"test": "npm run lint && npm run unit && npm run typescript && npm run typescript:jest && npm run typescript:esm && npm run typescript:swc && npm run typescript:tsm",
"typescript": "tsd",
"typescript:jest": "jest",
"typescript:esm": "node scripts/unit-typescript-esm.js",
"typescript:swc": "node scripts/unit-typescript-swc.js",
"typescript:tsm": "node scripts/unit-typescript-tsm.js",
"unit": "node scripts/unit.js",
"unit:with-modules": "tap test/commonjs/*.js test/module/*.js test/typescript/*.ts",
"unit:without-modules": "tap test/commonjs/*.js test/typescript/*.ts"
},
"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 <hello@matteocollina.com>",
"license": "MIT",
"bugs": {
"url": "https://github.com/fastify/fastify-autoload/issues"
},
"homepage": "https://github.com/fastify/fastify-autoload#readme",
"devDependencies": {
"@swc/core": "^1.2.129",
"@swc/register": "^0.1.9",
"@types/jest": "^27.4.0",
"@types/node": "^17.0.8",
"@types/tap": "^15.0.5",
"fastify": "^3.25.3",
"fastify-plugin": "^3.0.0",
"fastify-url-data": "^3.0.3",
"jest": "^27.4.7",
"pre-commit": "^1.2.2",
"snazzy": "^9.0.0",
"standard": "^16.0.4",
"tap": "^15.1.6",
"ts-jest": "^27.1.3",
"ts-node": "^10.4.0",
"ts-node-dev": "^1.1.8",
"tsd": "^0.20.0",
"tsm": "^2.2.1",
"typescript": "^4.5.4"
},
"dependencies": {
"pkg-up": "^3.1.0",
"semver": "^7.3.5"
},
"standard": {
"ignore": [
"test/*/*-error/lib/a.js"
]
},
"tsd": {
"directory": "test/typescript/definitions"
},
"jest": {
"preset": "ts-jest",
"testEnvironment": "node",
"rootDir": "./test/typescript-jest",
"testMatch": [
"**/*.test.ts"
],
"transform": {
"^.+\\.(ts|tsx)$": "ts-jest"
}
}
}