-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
41 lines (41 loc) · 1.06 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
{
"name": "@uscreen.de/create-fastify-app",
"version": "1.1.3",
"description": "cli to create a new @uscreen.de/fastify-app",
"main": "index.js",
"type": "module",
"homepage": "https://github.com/uscreen/create-fastify-app",
"repository": {
"type": "git",
"url": "git+https://github.com/uscreen/create-fastify-app.git"
},
"author": "Marcus Spiegel <[email protected]>",
"license": "MIT",
"bin": {
"create-fastify-app": "./bin/cli.js"
},
"scripts": {
"test": "c8 tap",
"test:cov": "c8 --reporter=html --reporter=text tap",
"test:ci": "c8 --reporter=lcovonly tap",
"lint": "eslint --fix",
"prepare": "husky install"
},
"dependencies": {
"commander": "^11.0.0",
"fs-extra": "^11.1.0",
"read-pkg-up": "^11.0.0",
"write-pkg": "^7.0.0"
},
"devDependencies": {
"@uscreen.de/eslint-config-prettystandard-node": "^0.2.10",
"c8": "^9.0.0",
"husky": ">=8.0.2",
"lint-staged": ">=13.0.3",
"strip-ansi": "^7.0.1",
"tap": "^16.3.4"
},
"lint-staged": {
"*.js": "eslint --cache --fix"
}
}