-
Notifications
You must be signed in to change notification settings - Fork 167
/
package.json
100 lines (100 loc) · 3.6 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
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
{
"name": "fastify-cli",
"version": "7.0.1",
"description": "Run a fastify route with one command!",
"main": "cli.js",
"type": "commonjs",
"bin": {
"fastify": "cli.js"
},
"scripts": {
"lint": "standard",
"lint:fix": "standard --fix",
"pretest": "xcopy /e /k /i . \"..\\node_modules\\fastify-cli\" || rsync -r --exclude=node_modules ./ node_modules/fastify-cli || echo 'this is fine'",
"test": "npm run unit:suites && c8 --clean npm run test:cli-and-typescript",
"unit:cjs": "node suite-runner.js \"templates/app/test/**/*.test.js\"",
"unit:esm": "node suite-runner.js \"templates/app-esm/test/**/*.test.js\"",
"unit:ts-cjs": "cross-env TS_NODE_PROJECT=./test/configs/ts-cjs.tsconfig.json node -r ts-node/register suite-runner.js \"templates/app-ts/test/**/*.test.ts\"",
"unit:ts-esm": "cross-env TS_NODE_PROJECT=./test/configs/ts-esm.tsconfig.json FASTIFY_AUTOLOAD_TYPESCRIPT=1 node -r ts-node/register --loader ts-node/esm suite-runner.js \"templates/app-ts-esm/test/**/*.test.ts\"",
"unit:suites": "node should-skip-test-suites.js || npm run all-suites",
"all-suites": "npm run unit:cjs && npm run unit:esm && npm run unit:ts-cjs && npm run unit:ts-esm",
"unit:cli-js-esm": "node suite-runner.js \"test/esm/**/*.test.js\"",
"unit:cli-js": "tap \"test/**/*.test.js\" --no-coverage --timeout 400 --jobs 1 --color -R specy",
"unit:cli-ts": "cross-env TS_NODE_PROJECT=./test/configs/ts-cjs.tsconfig.json tap \"test/**/*.test.ts\" --no-coverage --timeout 400 --jobs 1 --color -R specy",
"unit:cli": "npm run unit:cli-js && npm run unit:cli-ts && npm run unit:cli-js-esm",
"test:cli-and-typescript": "npm run unit:cli && npm run test:typescript",
"test:typescript": "tsd templates/plugin -t ./../../index.d.ts && tsc --project templates/app-ts/tsconfig.json --noEmit && tsc --project templates/app-ts-esm/tsconfig.json --noEmit"
},
"keywords": [
"fastify",
"cli",
"one command"
],
"author": "Tomas Della Vedova - @delvedor (http://delved.org)",
"contributors": [
{
"name": "Matteo Collina",
"email": "hello@matteocollina.com"
}
],
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/fastify/fastify-cli.git"
},
"bugs": {
"url": "https://github.com/fastify/fastify-cli/issues"
},
"homepage": "https://github.com/fastify/fastify-cli#readme",
"standard": {
"ignore": [
"test/data/parsing-error.js",
"test/data/undefinedVariable.js"
]
},
"dependencies": {
"@fastify/deepmerge": "^2.0.0",
"chalk": "^4.1.2",
"chokidar": "^4.0.0",
"close-with-grace": "^2.1.0",
"commist": "^3.0.0",
"dotenv": "^16.0.0",
"fastify": "^5.0.0",
"fastify-plugin": "^5.0.0",
"generify": "^4.0.0",
"help-me": "^4.0.1",
"is-docker": "^2.0.0",
"pino-pretty": "^11.2.0",
"pkg-up": "^3.1.0",
"resolve-from": "^5.0.0",
"semver": "^7.3.5",
"yargs-parser": "^21.1.1"
},
"devDependencies": {
"@fastify/autoload": "^6.0.0",
"@fastify/pre-commit": "^2.0.2",
"@fastify/sensible": "^6.0.0",
"@types/node": "^22.1.0",
"@types/tap": "^15.0.5",
"c8": "^10.1.2",
"concurrently": "^9.0.0",
"cross-env": "^7.0.3",
"fastify-tsconfig": "^2.0.0",
"minimatch": "^9.0.5",
"proxyquire": "^2.1.3",
"rimraf": "^3.0.2",
"simple-get": "^4.0.0",
"sinon": "^19.0.2",
"standard": "^17.0.0",
"strip-ansi": "^6.0.1",
"tap": "^16.1.0",
"ts-node": "^10.4.0",
"ts-standard": "^12.0.1",
"tsd": "^0.31.0",
"typescript": "~5.6.3",
"walker": "^1.0.8"
},
"tsd": {
"directory": "test"
}
}