forked from ankitjain28may/list-files-in-pr
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
36 lines (36 loc) · 921 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
36
{
"name": "list-files-in-pr",
"version": "1.0.0",
"description": "List the files in the pull request in Github Actions",
"main": "src/index.js",
"scripts": {
"start": "node src/index.js",
"lint": "eslint .",
"prepare": "ncc build src/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/ankitjain28may/list-files-in-pr.git"
},
"keywords": [
"GitHub",
"Actions",
"JavaScript",
"List Files in PR",
"Pull Request"
],
"author": "Ankit Jain <[email protected]>",
"license": "ISC",
"dependencies": {
"@actions/core": "^1.2.6",
"@actions/github": "^4.0.0",
"@octokit/core": "^3.2.1"
},
"devDependencies": {
"@vercel/ncc": "^0.24.0",
"eslint": "^7.4.0",
"jest": "^26.1.0"
}
}