forked from fastify/fastify-cli
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
53 lines (53 loc) · 1.28 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
{
"name": "fastify-cli",
"version": "0.12.0",
"description": "Run a fastify route with one command!",
"main": "cli.js",
"bin": {
"fastify": "cli.js"
},
"scripts": {
"lint": "standard",
"unit": "tap test.js",
"test": "npm run lint && npm run unit",
"generate-readme": "node -e \"fs.writeFileSync('README.md', fs.readFileSync('README.tmpl', 'utf8').replace('\\${help.txt}', fs.readFileSync('help.txt')))\""
},
"keywords": [
"fastify",
"cli",
"one command"
],
"author": "Tomas Della Vedova - @delvedor (http://delved.org)",
"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": ">= 4.0"
},
"standard": {
"ignore": [
"test_data/parsing-error.js",
"test_data/undefinedVariable.js"
]
},
"dependencies": {
"fastify": "^1.0.0",
"minimist": "^1.2.0",
"pino-colada": "^1.4.0",
"pump": "^3.0.0",
"resolve-from": "^4.0.0",
"update-notifier": "^2.1.0"
},
"devDependencies": {
"pre-commit": "^1.2.2",
"request": "2.83.0",
"standard": "^11.0.0",
"tap": "^11.0.0"
}
}