-
Notifications
You must be signed in to change notification settings - Fork 35
Expand file tree
/
Copy pathpackage.json
More file actions
64 lines (64 loc) · 1.95 KB
/
package.json
File metadata and controls
64 lines (64 loc) · 1.95 KB
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
{
"name": "fastify-openapi-glue",
"version": "4.11.0",
"description": "generate a fastify configuration from an openapi specification",
"main": "index.js",
"type": "module",
"engines": {
"node": ">=14.0.0"
},
"types": "index.d.ts",
"scripts": {
"start": "fastify start --options examples/petstore/index.js",
"format": "biome format --write .",
"test": "node --test --experimental-test-coverage --test-reporter=spec --test-reporter-destination=stdout --test-reporter=lcov --test-reporter-destination=coverage.lcov --test-coverage-lines=100 --test-coverage-functions=100 --test-coverage-branches=100 --test-coverage-exclude='test/**' test/test-*.js && biome format --write . && biome ci .",
"test:typescript": "tsc --noEmit",
"test:ci": "npm run lint && npm run test && npm run test:typescript",
"lint": "biome ci .",
"dev": "fastify start -l info -P examples/petstore/index.js",
"updateChecksums": "node test/update-checksums.js",
"preversion": "npm test && git add examples/generated-*-project/package.json",
"postversion": "git push && git push --tags"
},
"author": "Hans Klunder",
"license": "MIT",
"bin": {
"openapi-glue": "./bin/openapi-glue-cli.js"
},
"dependencies": {
"@seriousme/openapi-schema-validator": "^2.9.0",
"fastify-plugin": "^5.1.0",
"yaml": "^2.8.3"
},
"directories": {
"example": "./examples",
"test": "./test",
"lib": "./examples",
"bin": "./bin"
},
"devDependencies": {
"@biomejs/biome": "^2.4.12",
"expect-type": "^1.3.0",
"fastify": "^5.8.5",
"fastify-cli": "^8.0.0",
"typescript": "^6.0.2"
},
"repository": {
"type": "git",
"url": "git+https://github.com/seriousme/fastify-openapi-glue.git"
},
"keywords": [
"fastify",
"swagger",
"openapi",
"generator"
],
"bugs": {
"url": "https://github.com/seriousme/fastify-openapi-glue/issues"
},
"homepage": "https://github.com/seriousme/fastify-openapi-glue#readme",
"exports": {
"import": "./index.js",
"default": "./index.js"
}
}