forked from ranemihir/pull-inspector
-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
35 lines (35 loc) · 884 Bytes
/
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
{
"name": "add-size-label-to-pr",
"version": "1.0.0",
"description": "A GitHub Action to add relevant size label to PR based on the change in LOC.",
"main": "dist/index.js",
"scripts": {
"dev": "nodemon",
"build": "ncc build src/index.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/flowdify/contribution-inspector.git"
},
"keywords": [
"github",
"action"
],
"author": "ranemihir",
"license": "ISC",
"bugs": {
"url": "https://github.com/flowdify/contribution-inspector/issues"
},
"homepage": "https://github.com/flowdify/contribution-inspector#readme",
"dependencies": {
"@actions/core": "^1.2.6",
"@actions/github": "^4.0.0",
"@vercel/ncc": "^0.27.0",
"gunzip-file": "^0.1.1",
"node-fetch": "^2.6.1"
},
"devDependencies": {
"eslint": "^7.18.0",
"nodemon": "^2.0.7"
}
}