-
Notifications
You must be signed in to change notification settings - Fork 7
/
package.json
59 lines (59 loc) · 1.48 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
{
"name": "contributors-list",
"description": "Automatically generate contributors.svg",
"version": "1.2.1",
"main": "dist/index.js",
"files": [
"dist",
"action.yml"
],
"scripts": {
"clean": "rimraf dist",
"lint": "eslint 'src/**/*.{js,ts}?(x)' --fix",
"build": "ncc build src/index.ts --minify --v8-cache",
"prebuild": "run-s lint clean",
"prepare": "is-ci || husky install .husky"
},
"lint-staged": {
"**/*.{js,jsx,tsx,ts,less,md,json}": [
"pretty-quick — staged"
],
"*.ts": [
"eslint --fix"
]
},
"license": "MIT",
"author": {
"name": "bubkoo",
"email": "[email protected]"
},
"repository": "https://github.com/wow-actions/contributors-list",
"dependencies": {
"@actions/core": "^1.2.6",
"@actions/github": "^5.0.0",
"html-minifier": "^4.0.0",
"image-size": "^1.0.2",
"mustache": "^4.0.1",
"node-fetch": "^3.3.0",
"sharp": "^0.31.3"
},
"devDependencies": {
"@bubkoo/commitlint-config": "^1.0.1",
"@bubkoo/eslint-config": "^1.4.1",
"@bubkoo/tsconfig": "^1.1.0",
"@types/html-minifier": "^4.0.0",
"@types/mustache": "^4.0.1",
"@types/node": "^18.11.18",
"@types/node-fetch": "^2.5.7",
"@types/sharp": "^0.31.1",
"@vercel/ncc": "^0.36.1",
"eslint": "^8.33.0",
"husky": "^8.0.3",
"is-ci": "^3.0.0",
"npm-run-all": "^4.1.5",
"prettier": "^2.4.1",
"pretty-quick": "^3.1.1",
"rimraf": "^4.1.2",
"typescript": "^4.4.3"
}
}