forked from fastify/fastify-cli
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
95 lines (95 loc) · 2.5 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
{
"name": "fastify-cli",
"version": "2.15.0",
"description": "Run a fastify route with one command!",
"main": "cli.js",
"bin": {
"fastify": "cli.js"
},
"scripts": {
"lint": "standard",
"lint:fix": "standard --fix",
"unit": "tap \"test/**/*.test.{js,ts}\" \"templates/**/*.test.{js,ts}\"",
"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 lint && npm run unit && npm run test:typescript",
"test:typescript": "tsd templates/plugin && tsc --project templates/app-ts/tsconfig.json && del-cli templates/app-ts/dist"
},
"keywords": [
"fastify",
"cli",
"one command"
],
"author": "Tomas Della Vedova - @delvedor (http://delved.org)",
"contributors": [
{
"name": "Matteo Collina",
"email": "[email protected]"
}
],
"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",
"engines": {
"node": ">= 10"
},
"standard": {
"ignore": [
"test/data/parsing-error.js",
"test/data/undefinedVariable.js"
]
},
"dependencies": {
"blessed": "^0.1.81",
"blessed-contrib": "^4.10.1",
"chalk": "^4.1.2",
"chokidar": "^3.5.2",
"close-with-grace": "^1.1.0",
"commist": "^2.0.0",
"dotenv": "^16.0.0",
"fastify": "^3.0.0",
"generify": "^4.0.0",
"help-me": "^3.0.0",
"is-docker": "^2.0.0",
"make-promises-safe": "^5.1.0",
"pino-colada": "^2.2.2",
"pkg-up": "^3.1.0",
"pump": "^3.0.0",
"resolve-from": "^5.0.0",
"semver": "^7.3.5",
"split2": "^4.1.0",
"yargs-parser": "^20.0.0"
},
"devDependencies": {
"@types/node": "^17.0.8",
"@types/tap": "^15.0.5",
"concurrently": "^7.0.0",
"del-cli": "^3.0.1",
"fastify-autoload": "^3.10.0",
"fastify-plugin": "^3.0.0",
"fastify-sensible": "^3.1.2",
"fastify-tsconfig": "^1.0.1",
"minimatch": "^4.1.1",
"pre-commit": "^1.2.2",
"proxyquire": "^2.1.3",
"rimraf": "^3.0.2",
"simple-get": "^4.0.0",
"sinon": "^13.0.0",
"standard": "^16.0.4",
"strip-ansi": "^6.0.1",
"tap": "^15.1.6",
"ts-node": "^10.4.0",
"ts-standard": "^11.0.0",
"tsd": "^0.16.0",
"typescript": "^4.5.4",
"walker": "^1.0.8"
},
"tsd": {
"directory": "test"
}
}