-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
31 lines (31 loc) · 800 Bytes
/
package.json
File metadata and controls
31 lines (31 loc) · 800 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
31
{
"name": "simple-lang-stats",
"version": "2.0.0",
"description": "A GitHub Action to generate language statistics and update README",
"main": "dist/index.js",
"scripts": {
"build": "ncc build src/main.ts -o dist --source-map",
"package": "npm run build",
"test": "npm run build",
"test:local": "npm run build && node -e \"require('./dist/index.js').run()\"",
"all": "npm run build"
},
"dependencies": {
"@actions/core": "^1.10.1",
"@actions/github": "^5.1.1"
},
"devDependencies": {
"@types/node": "^20.8.0",
"@vercel/ncc": "^0.38.0",
"typescript": "^5.0.0"
},
"keywords": [
"github-action",
"github-api",
"programming-languages",
"statistics",
"readme-generator"
],
"author": "carolyn-sun",
"license": "MIT"
}