-
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
36 lines (36 loc) · 1001 Bytes
/
package.json
File metadata and controls
36 lines (36 loc) · 1001 Bytes
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
{
"name": "make-readme",
"version": "0.0.1",
"description": "Makes new ReadMe file for GitHub repository",
"main": "index.js",
"scripts": {
"make-readme": "node js/index.js",
"ts-build": "tsc --build",
"jsdoc-build": "jsdoc -c jsdoc-config.json",
"jsdoc2md-build": "node js/jsdoc2md.js",
"jsdoc2md-write": "node js/jsdoc2md.js > jsdoc2md/README.md",
"test": "echo \"Error: no test specified\" && exit 1"
},
"repository": {
"type": "git",
"url": "git+ssh://git@github.com/github-utilities/make-readme.git"
},
"keywords": [
"template"
],
"author": "S0AndS0",
"license": "AGPL-3.0",
"bugs": {
"url": "https://github.com/github-utilities/make-readme/issues"
},
"homepage": "https://github.com/github-utilities/make-readme#readme",
"dependencies": {
"mustache": "^3.0.1"
},
"devDependencies": {
"@types/mustache": "^4.0.1",
"@types/node": "^13.7.7",
"jsdoc-to-markdown": "^9.1.2",
"typescript": "^3.8.3"
}
}