-
-
Notifications
You must be signed in to change notification settings - Fork 4
/
package.json
36 lines (36 loc) · 956 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": "newline-action",
"version": "0.0.4",
"main": "dist/index.js",
"description": "A GitHub Action that automatically fixes files without a final new line in pull requests.",
"keywords": [
"actions",
"newline"
],
"repository": {
"type": "git",
"url": "git+https://github.com/Logerfo/newline-action.git"
},
"author": {
"email": "[email protected]",
"name": "Bruno Logerfo",
"url": "https://github.com/Logerfo"
},
"homepage": "https://github.com/newline-action",
"bugs": "https://github.com/newline-action/issues",
"license": "MIT",
"scripts": {
"prepare": "ncc build src/main.js -o dist --source-map --license licenses.txt",
"lint": "eslint src/main.js"
},
"dependencies": {
"@actions/core": "1.2.7",
"@actions/github": "^5.1.1",
"istextorbinary": "^6.0.0",
"js-yaml": "3.14.1"
},
"devDependencies": {
"@vercel/ncc": "^0.36.0",
"eslint": "7.9.0"
}
}