-
-
Notifications
You must be signed in to change notification settings - Fork 17
/
package.json
40 lines (40 loc) · 1022 Bytes
/
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
{
"name": "boiler-gen",
"type": "module",
"version": "1.1.0",
"description": "README Generator",
"main": "index.js",
"scripts": {
"prepare": "husky install",
"test": "echo \"Error: no test specified\" && exit 1",
"build": "tsc",
"start": "node ./dist/index.js",
"lint": "npx eslint . --ext .ts,.tsx"
},
"author": "Thenlie",
"license": "ISC",
"repository": {
"type": "git",
"url": "git+https://github.com/Thenlie/readme-generator.git"
},
"bugs": {
"url": "https://github.com/Thenlie/readme-generator/issues"
},
"homepage": "https://github.com/Thenlie/readme-generator#readme",
"bin": {
"boiler-gen": "dist/index.js"
},
"dependencies": {
"inquirer": "^9.1.4"
},
"devDependencies": {
"@types/inquirer": "^9.0.3",
"@types/node": "^18.11.12",
"@typescript-eslint/eslint-plugin": "^5.46.0",
"eslint": "^8.29.0",
"eslint-plugin-prettier": "^4.2.1",
"husky": "^8.0.2",
"prettier": "^2.8.2",
"typescript": "^4.9.4"
}
}