-
Notifications
You must be signed in to change notification settings - Fork 115
/
package.json
82 lines (82 loc) · 2.51 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
{
"name": "@appnest/readme",
"version": "1.2.7",
"description": "Automatically generate a beautiful best-practice README file based on the contents of your repository",
"license": "MIT",
"module": "index.esm.js",
"main": "index.cjs.js",
"types": "index.d.ts",
"author": "Appnest",
"scripts": {
"prebuild": "node prebuild.js",
"b:lib": "rollup -c && rollup -c=rollup-cli.config.js",
"b:lib:prebuild": "npm run prebuild && npm run b:lib",
"readme": "npm run b:lib && npm run generate:readme",
"generate:readme": "node dist/cli.cjs.js generate",
"publish": "cd dist && npm publish --access=public && cd ..",
"git:add:commit:push": "git add . && git commit --no-edit --amend --no-verify && git push",
"bump:patch": "npm version patch && npm run git:add:commit:push",
"bump:minor": "npm version minor && npm run git:add:commit:push",
"bump:major": "npm version major && npm run git:add:commit:push",
"publish:patch": "npm run bump:patch && npm run b:lib:prebuild && npm run publish",
"publish:minor": "npm run bump:minor && npm run b:lib:prebuild && npm run publish",
"publish:major": "npm run bump:major && npm run b:lib:prebuild && npm run publish",
"push:readme": "npm run readme && git add . && git commit -m 'New readme' && git push",
"ncu": "ncu -u -a && npm update && npm install"
},
"bugs": {
"url": "https://github.com/andreasbm/readme/issues"
},
"homepage": "https://github.com/andreasbm/readme#readme",
"repository": {
"type": "git",
"url": "git+https://github.com/andreasbm/readme.git"
},
"keywords": [
"opensource",
"project",
"readme",
"template",
"boilerplate",
"nodejs",
"maintaining",
"generator"
],
"contributors": [
{
"name": "Andreas Mehlsen",
"url": "https://twitter.com/andreasmehlsen",
"img": "https://avatars1.githubusercontent.com/u/6267397?s=460&v=4",
"info": [
"🔥"
]
},
{
"name": "You?",
"img": "https://joeschmoe.io/api/v1/random",
"url": "https://github.com/andreasbm/readme/blob/master/CONTRIBUTING.md"
}
],
"bin": {
"readme": "cli.cjs.js"
},
"dependencies": {
"@types/glob": "^7.1.1",
"check-links": "^1.1.8",
"colors": "^1.4.0",
"commander": "^5.0.0",
"fs-extra": "^9.0.0",
"glob": "^7.1.6",
"path": "^0.12.7",
"web-component-analyzer": "1.0.3"
},
"devDependencies": {
"@types/fs-extra": "^8.1.0",
"@wessberg/rollup-plugin-ts": "^1.2.21",
"rimraf": "^3.0.2",
"rollup": "^2.1.0",
"rollup-plugin-commonjs": "^10.1.0",
"rollup-plugin-json": "^4.0.0",
"rollup-plugin-node-resolve": "^5.2.0"
}
}