forked from kefranabg/readme-md-generator
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
63 lines (63 loc) · 1.53 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
{
"name": "readme-md-generator",
"version": "1.0.0",
"description": "CLI that generates beautiful README.md files.",
"main": "src/index.js",
"bin": {
"readme": "src/index.js"
},
"dependencies": {
"boxen": "^4.0.0",
"date-fns": "^2.0.1",
"ejs": "^3.0.1",
"git-repo-name": "^1.0.1",
"inquirer": "~7.0.0",
"load-json-file": "^6.0.0",
"lodash": "^4.17.11",
"markdown-escape": "^1.0.2",
"node-fetch": "^2.6.0",
"ora": "4.0.3",
"yargs": "^15.0.1"
},
"devDependencies": {
"codecov": "^3.5.0",
"eslint": "^6.0.0",
"eslint-config-airbnb-base": "^14.0.0",
"eslint-plugin-import": "^2.17.3",
"jest": "^24.8.0",
"prettier": "^1.17.1"
},
"scripts": {
"lint": "eslint src",
"prettier": "prettier \"**/*.{js,md,json}\"",
"prettier:check": "npm run prettier -- --check",
"prettier:fix": "npm run prettier -- --write",
"start": "node src/index.js",
"test": "jest",
"test:ci": "jest --coverage && codecov"
},
"repository": {
"type": "git",
"url": "git+https://github.com/kefranabg/readme-md-generator.git"
},
"keywords": [
"readme",
"md",
"cli",
"generator",
"template"
],
"author": "Franck Abgrall",
"license": "MIT",
"bugs": {
"url": "https://github.com/kefranabg/readme-md-generator/issues"
},
"homepage": "https://github.com/kefranabg/readme-md-generator#readme",
"publishConfig": {
"registry": "https://npm.pkg.github.com/@kefranabg"
},
"engines": {
"npm": ">=5.5.0",
"node": ">=9.3.0"
}
}