-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
37 lines (37 loc) · 1.18 KB
/
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
37
{
"name": "nuget-pre-release-packages-detection-action",
"version": "1.0.0",
"description": "GitHub Action which detects pre-release Nuget packages",
"main": "src/index.js",
"scripts": {
"test": "jest",
"coverage": "jest --coverage=true",
"buildncc": "ncc build src/index.js -o .github/actions/nugetprerelease/dist --license licenses.txt",
"buildnccroot": "ncc build src/index.js -o dist --license licenses.txt",
"lint": "eslint ."
},
"repository": {
"type": "git",
"url": "git+https://github.com/Kevin-Bronsdijk/nuget-pre-release-packages-detection-action.git"
},
"keywords": [],
"author": "Kevin Bronsdijk",
"license": "ISC",
"bugs": {
"url": "https://github.com/Kevin-Bronsdijk/nuget-pre-release-packages-detection-action/issues"
},
"homepage": "https://github.com/Kevin-Bronsdijk/nuget-pre-release-packages-detection-action#readme",
"dependencies": {
"@actions/core": "^1.10.0",
"line-reader": "^0.4.0"
},
"devDependencies": {
"@vercel/ncc": "^0.36.1",
"eslint": "^7.18.0",
"eslint-config-google": "^0.14.0",
"jest": "^26.6.3",
"jest-each": "^26.6.2",
"ncc": "^0.3.6",
"semantic-release": "^19.0.3"
}
}