-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
40 lines (40 loc) · 1.1 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
{
"name": "github-readme-topics-action",
"version": "1.0.0",
"description": "GitHub Action to update GitHub profile README.md with categorized repos based on their Topics",
"main": "index.js",
"type": "module",
"scripts": {
"start": "node index.js",
"lint": "eslint .",
"prepare": "ncc build index.js -o dist --source-map --license licenses.txt",
"test": "jest",
"all": "npm run lint && npm run prepare && npm run test"
},
"repository": {
"type": "git",
"url": "git+https://github.com/metaory/github-readme-topics-action.git"
},
"keywords": [
"GitHub",
"Readme",
"Topics",
"Actions",
"JavaScript"
],
"author": "metaory <metaory@gmail.com>",
"license": "MIT",
"bugs": {
"url": "https://github.com/metaory/github-readme-topics-action/issues"
},
"homepage": "https://github.com/metaory/github-readme-topics-action#readme",
"dependencies": {
"@actions/core": "^1.10.0",
"@octokit/core": "^5.0.0",
"@octokit/plugin-paginate-rest": "^8.0.0",
"node-fetch": "^3.3.2"
},
"devDependencies": {
"@vercel/ncc": "^0.38.1"
}
}