forked from fastify/fastify-cli
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
96 lines (96 loc) · 2.4 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
{
"name": "fastify-cli",
"version": "2.11.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}\"",
"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": "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",
"engines": {
"node": ">= 10"
},
"standard": {
"ignore": [
"test/data/parsing-error.js",
"test/data/undefinedVariable.js"
]
},
"dependencies": {
"blessed": "^0.1.81",
"blessed-contrib": "^4.8.18",
"chalk": "^4.1.0",
"chokidar": "^3.3.1",
"close-with-grace": "^1.0.0",
"commist": "^1.0.0",
"dotenv": "^10.0.0",
"fastify": "^3.0.0",
"generify": "^4.0.0",
"help-me": "^2.0.0",
"is-docker": "^2.0.0",
"make-promises-safe": "^5.0.0",
"pino-colada": "^2.0.1",
"pkg-up": "^3.1.0",
"pump": "^3.0.0",
"resolve-from": "^5.0.0",
"semver": "^7.3.2",
"split2": "^3.1.1",
"yargs-parser": "^20.0.0"
},
"devDependencies": {
"@types/node": "^15.0.0",
"@types/tap": "^15.0.0",
"concurrently": "^6.0.0",
"cross-env": "^7.0.3",
"del-cli": "^3.0.1",
"fastify-autoload": "^3.3.1",
"fastify-plugin": "^3.0.0",
"fastify-sensible": "^3.1.0",
"fastify-tsconfig": "^1.0.1",
"minimatch": "^3.0.4",
"mkdirp": "^1.0.3",
"pre-commit": "^1.2.2",
"proxyquire": "^2.1.3",
"rimraf": "^3.0.2",
"simple-get": "^4.0.0",
"sinon": "^10.0.1",
"standard": "^16.0.3",
"strip-ansi": "^6.0.0",
"tap": "^15.0.9",
"ts-node": "^10.0.0",
"ts-standard": "^10.0.0",
"tsd": "^0.15.1",
"typescript": "^4.2.4",
"walker": "^1.0.7"
},
"tsd": {
"directory": "test"
}
}