-
-
Notifications
You must be signed in to change notification settings - Fork 7
/
package.json
74 lines (74 loc) · 2.17 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
{
"name": "readme-template-generator",
"version": "0.9.13",
"description": "CLI to help create readme file to document your project",
"private": false,
"repository": {
"type": "git",
"url": "git+https://github.com/Mikael-R/readme-template-generator.git"
},
"keywords": [
"generator",
"cli",
"readme",
"readme-template",
"readme-template-generator"
],
"author": "Mikael Aquino <mikarg9@gmail.com>",
"bugs": {
"url": "https://github.com/Mikael-R/readme-template-generator/issues"
},
"homepage": "https://github.com/Mikael-R/readme-template-generator#readme",
"bin": {
"readme-template-generator": "bin/readme-template-generator"
},
"scripts": {
"format": "eslint src --ext ts",
"dev": "node bin/readme-template-generator",
"copy:template": "cp src/templates/README.md.ejs dist/templates/README.md.ejs",
"delete-old-dist": "[ -d \"./dist\" ] && rm -rf dist",
"dist": "npm run delete-old-dist; sucrase src -d dist --transforms typescript,imports && npm run copy:template"
},
"files": [
"tsconfig.json",
"dist",
"LICENSE",
"README.md",
"bin"
],
"license": "MIT",
"dependencies": {
"cfonts": "^2.8.5",
"gluegun": "^5.1.6",
"inquirer": "^7.3.3",
"yargs": "^15.4.1"
},
"devDependencies": {
"@commitlint/cli": "^9.0.1",
"@commitlint/config-conventional": "^9.0.1",
"@lenne.tech/cli-plugin-helper": "0.0.8",
"@types/node": "^14.14.31",
"@types/yargs": "^15.0.5",
"@typescript-eslint/eslint-plugin": "^3.6.1",
"@typescript-eslint/parser": "^3.6.1",
"commitizen": "^4.1.2",
"cz-conventional-changelog": "3.2.0",
"eslint": "^7.5.0",
"eslint-config-prettier": "^6.11.0",
"eslint-config-standard": "^14.1.1",
"eslint-plugin-import": "^2.22.0",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-prettier": "^3.1.4",
"eslint-plugin-promise": "^4.2.1",
"eslint-plugin-standard": "^4.0.1",
"find-file-up": "^2.0.1",
"git-cz": "^4.7.0",
"husky": "^4.2.5",
"lint-staged": "^10.2.13",
"prettier": "^2.1.1",
"standard": "^12.0.1",
"sucrase": "^3.15.0",
"ts-node": "^8.4.1",
"typescript": "^3.6.3"
}
}