generated from yi-Xu-0100/javascript-action
-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
55 lines (55 loc) · 1.5 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
{
"name": "repo-list-generator",
"version": "1.1.1",
"description": "Generate repo list for user or organization.",
"main": "dist/index.js",
"scripts": {
"prepare": "husky install",
"lint-check": "prettier --check **/*.{js,yml,yaml,json,md} && eslint .",
"format": "prettier --write **/*.{js,yml,yaml,json,md}",
"clean": "rimraf -rf dist/* .repo_list/",
"build": "npm run clean && ncc build src/index.js --source-map --license license.txt",
"test": "npm run build && node --require dotenv/config dist/index.js"
},
"lint-staged": {
"**/*.{js,yml,yaml,json,md}": [
"prettier --write"
]
},
"repository": {
"type": "git",
"url": "git+https://github.com/yi-Xu-0100/repo-list-generator.git"
},
"keywords": [
"GitHub",
"Actions",
"JavaScript",
"repo",
"list",
"generator"
],
"author": "yi_Xu",
"license": "MIT",
"bugs": {
"url": "https://github.com/yi-Xu-0100/repo-list-generator/issues"
},
"homepage": "https://github.com/yi-Xu-0100/repo-list-generator#readme",
"dependencies": {
"@actions/artifact": "^1.1.1",
"@actions/core": "^1.10.0",
"@actions/github": "^5.1.1",
"@actions/io": "^1.1.3",
"underscore": "^1.13.6"
},
"devDependencies": {
"@vercel/ncc": "^0.36.1",
"dotenv": "^11.0.0",
"eslint": "^8.42.0",
"eslint-config-prettier": "^8.8.0",
"eslint-plugin-prettier": "^4.2.1",
"husky": "^8.0.3",
"lint-staged": "^13.2.2",
"prettier": "2.8.8",
"rimraf": "^3.0.2"
}
}