-
-
Notifications
You must be signed in to change notification settings - Fork 34
/
Copy pathpackage.json
85 lines (85 loc) · 2 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
{
"name": "github-actions-badge",
"version": "1.1.0",
"description": "Generate GitHub Actions badge Markdown code.",
"keywords": [
"actions",
"copy",
"generate",
"github",
"markdown"
],
"homepage": "https://github.com/azu/github-actions-badge",
"bugs": {
"url": "https://github.com/azu/github-actions-badge/issues"
},
"repository": {
"type": "git",
"url": "https://github.com/azu/github-actions-badge.git"
},
"license": "MIT",
"author": "azu",
"files": [
"bin/",
"lib/",
"src/"
],
"bin": {
"github-actions-badge": "./bin/cmd.js"
},
"main": "lib/github-actions-badge.js",
"types": "lib/github-actions-badge.d.ts",
"scripts": {
"build": "cross-env NODE_ENV=production tsc -p .",
"clean": "rimraf lib/",
"prettier": "prettier --write \"**/*.{js,jsx,ts,tsx,css}\"",
"prepublish": "npm run --if-present build",
"test": "mocha \"test/**/*.ts\"",
"watch": "tsc -p . --watch",
"postinstall": "husky install",
"prepublishOnly": "pinst --disable",
"postpublish": "pinst --enable"
},
"husky": {
"hooks": {
"precommit": "lint-staged"
}
},
"lint-staged": {
"*.{js,jsx,ts,tsx,css}": [
"prettier --write",
"git add"
]
},
"prettier": {
"printWidth": 120,
"singleQuote": false,
"tabWidth": 4
},
"devDependencies": {
"@types/glob": "^7.1.1",
"@types/hosted-git-info": "^3.0.0",
"@types/js-yaml": "^3.12.1",
"@types/meow": "^5.0.0",
"@types/mocha": "^7.0.2",
"@types/node": "^14.0.13",
"cross-env": "^7.0.2",
"husky": "5",
"lint-staged": "^10.2.11",
"mocha": "^8.0.1",
"pinst": "^2.1.4",
"prettier": "^2.0.5",
"rimraf": "^3.0.0",
"ts-node": "^8.5.2",
"ts-node-test-register": "^8.0.1",
"typescript": "^3.7.2"
},
"dependencies": {
"git-remote-origin-url": "^3.0.0",
"glob": "^7.1.6",
"hosted-git-info": "^3.0.2",
"js-yaml": "^3.13.1",
"markdown-escape": "^1.1.0",
"meow": "^7.0.1"
}
}