This repository has been archived by the owner on Dec 23, 2021. It is now read-only.
-
-
Notifications
You must be signed in to change notification settings - Fork 12
/
package.json
118 lines (118 loc) · 3.37 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
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
{
"name": "@ibbatta/readme-generator",
"version": "0.1.9",
"description": "This project was born mainly to satisfy my desire for knowledge and to simplify my workflow. Being a curious (and also lazy) developer I have always wondered how avoid to waste my working time to write README.md files who fits perfectly project by project and that's why I wrote a tool to help me simplify and speed up these processes.",
"main": "./src/index.js",
"bin": {
"readme-generator": "./dist/index.js"
},
"homepage": "https://github.com/ibbatta/readme-generator",
"repository": {
"type": "git",
"url": "git+https://github.com/ibbatta/readme-generator.git"
},
"bugs": {
"url": "https://github.com/ibbatta/readme-generator/issues",
"email": "[email protected]"
},
"author": "Maurizio Battaghini <[email protected]> (https://twitter.com/battago)",
"contributors": [
"Maurizio Battaghini (http://github.com/ibbatta)"
],
"keywords": [
"readme",
"readme-template",
"readme-generator",
"readme-md",
"generator",
"cli",
"readme-standard",
"readme-quality"
],
"engines": {
"node": ">= 10.16.x",
"npm": ">= 6.9.x"
},
"license": "MIT",
"private": false,
"scripts": {
"start": "clear && babel-node -- ./src/index.js",
"build": "rm -rf ./dist && rollup --config ./rollup.config.babel.js --environment INCLUDE_DEPS,BUILD:production",
"build:watch": "rm -rf ./dist && rollup --config ./rollup.config.babel.js --watch",
"test": "lint-staged && jest",
"test:watch": "jest --watch",
"prepare": "npm run build",
"changelog": "auto-changelog",
"version": "auto-changelog -p && git add CHANGELOG.md"
},
"publishConfig": {
"registry": "https://npm.pkg.github.com/"
},
"dependencies": {
"boxen": "^4.2.0",
"chalk": "^4.1.0",
"commander": "^5.1.0",
"figlet": "^1.4.0",
"handlebars": "^4.7.6",
"immer": ">=8.0.1",
"inquirer": "^7.1.0",
"js-yaml": "^3.14.0",
"lodash": "^4.17.15"
},
"devDependencies": {
"@babel/cli": "^7.10.1",
"@babel/core": "^7.10.2",
"@babel/node": "^7.10.1",
"@babel/preset-env": "^7.10.2",
"auto-changelog": "^2.0.0",
"babel-eslint": "^10.1.0",
"babel-jest": "^26.0.1",
"babel-loader": "^8.1.0",
"core-js": "^3.6.5",
"eslint": "^7.2.0",
"eslint-config-airbnb": "18.1.0",
"eslint-plugin-import": "^2.21.2",
"eslint-plugin-jest": "^23.13.2",
"eslint-plugin-jsx-a11y": "^6.2.3",
"husky": "^4.2.5",
"jest": "^26.0.1",
"lint-staged": "^10.2.10",
"rollup": "^2.15.0",
"rollup-plugin-babel": "^4.4.0",
"rollup-plugin-copy-assets": "^2.0.1",
"rollup-plugin-node-resolve": "^5.2.0",
"rollup-plugin-terser": "^6.1.0"
},
"husky": {
"hooks": {
"pre-commit": "npm run test && auto-changelog && git add CHANGELOG.md",
"commit-msg": "echo HUSKY_GIT_PARAMS"
}
},
"lint-staged": {
"*.js": [
"eslint --fix",
"git add"
]
},
"auto-changelog": {
"output": "CHANGELOG.md",
"template": "changelog.tpl.hbs",
"unreleased": true,
"commitLimit": 10,
"includeBranch": [
"master",
"develop",
"*"
]
},
"readmeGenerator": {
"social": {
"twitter": "https://twitter.com/battago",
"github": "https://github.com/ibbatta"
}
},
"directories": {
"test": "test"
}
}