-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
59 lines (59 loc) · 1.36 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
{
"name": "@jsse/fastify-shitty",
"version": "0.1.1",
"description": "Plugin to make fastify shittier",
"private": false,
"main": "dist/fastify-shitty.js",
"module": "dist/fastify-shitty.mjs",
"types": "dist/index.d.ts",
"exports": {
"./package.json": "./package.json",
".": {
"import": "./dist/fastify-shitty.mjs",
"require": "./dist/fastify-shitty.js",
"types": "./dist/index.d.ts"
}
},
"directories": {
"test": "test"
},
"scripts": {
"test": "npm run lint && npm run unit && npm run test:typescript",
"lint": "standard && npm run lint:typescript",
"lint:typescript": "ts-standard",
"test:typescript": "tsd",
"unit": "tap test/**/*.test.js",
"build": "tsup --clean && vitest --run && pnpm unit",
"dev": "vitest",
"prepublish": "pnpm build"
},
"keywords": [
"fastify",
"plugin",
"fastify-plugin"
],
"author": "jessekrubin",
"license": "MIT",
"dependencies": {
"fastify-plugin": "^4.5.0"
},
"files": [
"dist",
"package.json"
],
"devDependencies": {
"@types/node": "^16.6.2",
"fastify": "^4.18.0",
"fastify-tsconfig": "^1.0.1",
"standard": "^17.1.0",
"tap": "^16.3.6",
"ts-standard": "^12.0.2",
"tsd": "^0.28.1",
"tsup": "^7.0.0",
"typescript": "^5.1.3",
"vitest": "^0.32.2"
},
"tsd": {
"directory": "test"
}
}