-
-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
54 lines (54 loc) · 1.47 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
{
"name": "fastify-babel",
"version": "4.0.0",
"description": "Fastify Babel plugin for development servers",
"main": "index.js",
"exports": "./index.js",
"type": "module",
"scripts": {
"pretest": "cfware-lint .",
"tests-only": "nyc -s node --experimental-loader @istanbuljs/esm-loader-hook test.js|tap-yaml-summary",
"test": "npm run -s tests-only",
"posttest": "nyc report --check-coverage"
},
"engines": {
"node": ">=18"
},
"author": "Corey Farrell",
"license": "MIT",
"keywords": [
"fastify",
"babel"
],
"repository": {
"type": "git",
"url": "git+https://github.com/cfware/fastify-babel.git"
},
"bugs": {
"url": "https://github.com/cfware/fastify-babel/issues"
},
"homepage": "https://github.com/cfware/fastify-babel#readme",
"dependencies": {
"fastify-plugin": "^4",
"hasha": "^5"
},
"peerDependencies": {
"@babel/core": "^7"
},
"devDependencies": {
"@babel/core": "^7",
"@cfware/lint": "^4",
"@cfware/nyc": "^1",
"@fastify/static": "^6",
"@istanbuljs/esm-loader-hook": "^0.2",
"babel-plugin-bare-import-rewrite": "^2",
"fastify": "^4",
"libtap": "^1",
"node-fetch": "^3",
"nyc": "^15",
"quick-lru": "^7",
"resolve": "^1",
"string-to-stream": "^3",
"tap-yaml-summary": "^0.2"
}
}