forked from taurusni/github-visitors-counter-action
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
30 lines (30 loc) · 784 Bytes
/
package.json
File metadata and controls
30 lines (30 loc) · 784 Bytes
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
{
"name": "github-visitors-counter-action",
"version": "1.0.0",
"description": "An action to accumulate the number of visitors who have viewed the public repositories.",
"main": "index.js",
"scripts": {
"lint": "eslint .",
"prepare": "ncc build src/index.js -o dist --source-map --license licenses.txt",
"all": "npm run lint && npm run prepare"
},
"repository": {
"type": "git",
"url": "own:taurusni/github-visitors-counter-action.git"
},
"keywords": [
"counter"
],
"author": "taurusni",
"license": "MIT",
"dependencies": {
"@actions/core": "^1.10.0",
"@actions/exec": "^1.1.1",
"@actions/github": "^5.1.1",
"fs-extra": "^10.1.0"
},
"devDependencies": {
"@vercel/ncc": "^0.34.0",
"eslint": "^8.27.0"
}
}