-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
35 lines (35 loc) · 944 Bytes
/
Copy pathpackage.json
File metadata and controls
35 lines (35 loc) · 944 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
32
33
34
35
{
"name": "pull-request-diff-comment-action",
"version": "0.0.0",
"description": "Adds/hides diff comments on pull requests.",
"main": "src/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": "git+https://github.com/Brightspace/pull-request-diff-comment-action.git"
},
"keywords": [
"GitHub",
"Actions",
"JavaScript",
"Feature Flags"
],
"author": "",
"license": "MIT",
"bugs": {
"url": "https://github.com/Brightspace/pull-request-diff-comment-action/issues"
},
"homepage": "https://github.com/Brightspace/pull-request-diff-comment-action#readme",
"dependencies": {
"@actions/core": "^1.2.6",
"@actions/github": "^4.0.0"
},
"devDependencies": {
"@vercel/ncc": "^0.24.1",
"eslint": "^7.12.1"
}
}