-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
47 lines (47 loc) · 1.37 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
{
"name": "@cfware/fastify-test-helper",
"version": "1.0.0",
"description": "Testing helper for @cfware/tap-selenium-manager with fastify",
"main": "index.js",
"exports": "./index.js",
"type": "module",
"scripts": {
"pretest": "cfware-lint .",
"tests-only": "c8 -r none node test.js|tap-yaml-summary",
"test": "npm run -s tests-only",
"posttest": "c8 report"
},
"engines": {
"node": ">=18"
},
"author": "Corey Farrell",
"license": "MIT",
"keywords": [],
"repository": {
"type": "git",
"url": "git+https://github.com/cfware/fastify-test-helper.git"
},
"bugs": {
"url": "https://github.com/cfware/fastify-test-helper/issues"
},
"homepage": "https://github.com/cfware/fastify-test-helper#readme",
"dependencies": {
"@babel/core": "^7",
"@babel/plugin-transform-optional-chaining": "^7",
"@fastify/static": "^6",
"babel-plugin-bare-import-rewrite": "^2",
"babel-plugin-istanbul": "^6",
"babel-plugin-remove-ungap": "^1",
"fastify": "^4",
"fastify-babel": "^4",
"glob": "^10"
},
"devDependencies": {
"@cfware/lint": "^4",
"@cfware/tap-selenium-manager": "^3",
"c8": "^8",
"libtap": "^1",
"lighterhtml": "^4",
"tap-yaml-summary": "^0.2"
}
}