forked from fastify/fastify-cli
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
79 lines (79 loc) · 1.88 KB
/
Copy pathpackage.json
File metadata and controls
79 lines (79 loc) · 1.88 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
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
{
"name": "fastify-cli",
"version": "1.5.0",
"description": "Run a fastify route with one command!",
"main": "cli.js",
"bin": {
"fastify": "cli.js"
},
"scripts": {
"lint": "standard",
"unit": "tap test/*.test.js templates/app/test/*/*.test.js templates/app-ts/test/*/*.test.ts",
"test": "npm run lint && npm run unit"
},
"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": ">= 6.15.0"
},
"standard": {
"ignore": [
"test/data/parsing-error.js",
"test/data/undefinedVariable.js"
]
},
"dependencies": {
"blessed": "^0.1.81",
"blessed-contrib": "^4.8.18",
"chalk": "^4.0.0",
"chokidar": "^3.3.1",
"commist": "^1.0.0",
"dotenv": "^8.2.0",
"fastify": "^3.0.0-rc.1",
"fastify-plugin": "^2.0.0",
"generify": "^4.0.0",
"help-me": "^1.1.0",
"is-docker": "^2.0.0",
"make-promises-safe": "^5.0.0",
"pino-colada": "^2.0.0",
"pump": "^3.0.0",
"resolve-from": "^5.0.0",
"yargs-parser": "^18.1.1"
},
"devDependencies": {
"@types/node": "^14.0.1",
"concurrently": "^5.1.0",
"fastify-autoload": "^3.0.2",
"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": "^9.0.0",
"standard": "^14.3.3",
"strip-ansi": "^6.0.0",
"tap": "^14.0.0",
"typescript": "^3.8.2",
"walker": "^1.0.7"
}
}