-
-
Notifications
You must be signed in to change notification settings - Fork 6
/
package.json
114 lines (114 loc) · 4.02 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
{
"name": "@ptkdev/all-shields-cli",
"displayName": "Badges generator from dotfiles for any markdown",
"description": "Tool to help automate your badges of shields.io, badgen.net, fury.io, github action and snyk.io from .all-shieldsrc dotfile for your markdown files. You can use Liquid variables like {{name}} or {{version}} which refer to your package.json. Inspired by all-contributors-cli",
"version": "2.0.2",
"main": "dist/cli/cli.js",
"bin": {
"@ptkdev/all-shields-cli": "dist/cli/cli.js",
"all-shields-cli": "dist/cli/cli.js",
"all-shields-generate": "dist/cli/cli.js"
},
"publishConfig": {
"access": "public"
},
"author": "Patryk Rzucidło [@ptkdev] <[email protected]> (https://ptk.dev)",
"license": "MIT",
"license-docs": "CC BY 4.0",
"license-translations": "CC BY 4.0",
"license-images": "CC BY-NC 4.0",
"homepage": "https://github.com/ptkdev/all-shields-cli",
"repository": {
"type": "git",
"url": "https://github.com/ptkdev/all-shields-cli.git"
},
"bugs": {
"url": "https://github.com/ptkdev/all-shields-cli/issues"
},
"engines": {
"node": ">=14.0.0"
},
"scripts": {
"init": "npm install && husky install",
"start": "node dist/cli/cli.js",
"link": "npm link",
"unlink": "npm unlink @ptkdev/all-shields-cli",
"dev": "ts-node scripts/configs.ts && ts-node scripts/debug.ts --enable && ts-node scripts/rmdist.ts && nodemon --exec 'npm run build && npm run start'",
"build": "ttsc",
"example": "cd examples && node ../dist/cli/cli.js && cd ..",
"release": "ts-node scripts/configs.ts && ts-node scripts/debug.ts --disable && npm run build && ttsc --declaration --emitDeclarationOnly",
"test": "jest app",
"docs": "git submodule update --recursive && markserv ./README.md",
"lint": "npm run lint-prettify && eslint . --cache --ext .ts,.js",
"lint-fix": "npm run lint-prettify && eslint . --cache --ext .ts,.js --fix",
"lint-prettify": "prettier --write **/*.{ts,md,json}",
"git-set-upstream": "git remote add upstream [email protected]:ptkdev/all-shields-cli.git && git fetch upstream",
"git-pull-upstream": "git pull upstream main && git pull upstream beta && git pull upstream nightly",
"git-pull": "git pull --recursive",
"git-ignore-reset": "git rm -r --cached . && git add . && git commit -m \"[Fix] Removing all files in .gitignore\"",
"npm-publish-main": "git checkout main && npm publish",
"npm-publish-beta": "git checkout beta && npm publish --tag beta",
"npm-publish-nightly": "git checkout nightly && npm publish --tag nightly",
"contributors-generate": "all-contributors generate",
"all-shields-generate": "node dist/cli/cli.js",
"pre-commit": "npm run contributors-generate && npm run all-shields-generate && npm run lint-fix && npm run test",
"pkg-clean": "rm -rf node_modules package-lock.json && npm install && husky install",
"pkg-update": "npm update",
"pkg-upgrade": "npx npm-check-updates -u && npm install && husky install"
},
"dependencies": {
"chokidar": "^3.5.1",
"nunjucks": "^3.2.3"
},
"devDependencies": {
"@types/jest": "^26.0.22",
"@types/node": "^14.14.41",
"@types/nunjucks": "^3.1.4",
"@types/shelljs": "^0.8.8",
"@typescript-eslint/eslint-plugin": "^4.22.0",
"@typescript-eslint/parser": "^4.22.0",
"all-contributors-cli": "^6.20.0",
"eslint": "^7.25.0",
"eslint-plugin-jest": "^24.3.5",
"eslint-plugin-jsdoc": "^32.3.1",
"husky": "^6.0.0",
"jest": "^26.6.3",
"json": "^10.0.0",
"markserv": "^1.17.4",
"nodemon": "^2.0.7",
"pm2": "^4.5.6",
"prettier": "^2.2.1",
"replace-in-file": "^6.2.0",
"shelljs": "^0.8.4",
"ts-jest": "^26.5.5",
"ts-node": "^9.1.1",
"ttypescript": "^1.5.12",
"typescript": "^4.2.4",
"typescript-transform-paths": "^2.2.3",
"yargs": "^16.2.0"
},
"keywords": [
"ptkdev",
"all-shields-cli",
"all-shields-generate",
"badges",
"badge",
"shield",
"shields",
"shieldsio",
"badgen",
"badgens",
"badgenio",
"snyk",
"snyks",
"snykio",
"fury",
"furys",
"furyio",
"github action",
"all-contributors-cli"
],
"contributors": [
"di4urp [@di4urp] (https://github.com/di4urp)"
]
}