2019-10-01 22:14:15 +02:00
|
|
|
{
|
|
|
|
|
"name": "maven-settings-action",
|
|
|
|
|
"version": "1.0.0",
|
|
|
|
|
"description": "Prepare maven settings",
|
|
|
|
|
"main": "index.js",
|
|
|
|
|
"scripts": {
|
|
|
|
|
"lint": "eslint index.js settings.js",
|
2019-10-02 21:31:26 +02:00
|
|
|
"test": "eslint index.js settings.js && jest --coverage"
|
2019-10-01 22:14:15 +02:00
|
|
|
},
|
|
|
|
|
"repository": {
|
|
|
|
|
"type": "git",
|
|
|
|
|
"url": "git+https://github.com/s4u/maven-settings-action.git"
|
|
|
|
|
},
|
|
|
|
|
"keywords": [
|
|
|
|
|
"GitHub",
|
|
|
|
|
"Actions",
|
|
|
|
|
"Setup",
|
|
|
|
|
"Maven"
|
|
|
|
|
],
|
|
|
|
|
"author": "S. Jaranowski",
|
|
|
|
|
"license": "MIT",
|
|
|
|
|
"bugs": {
|
|
|
|
|
"url": "https://github.com/s4u/maven-settings-action/issues"
|
|
|
|
|
},
|
|
|
|
|
"homepage": "https://github.com/s4u/maven-settings-action#readme",
|
|
|
|
|
"dependencies": {
|
2019-11-25 18:50:55 +01:00
|
|
|
"@actions/core": "^1.2.0",
|
2020-01-23 00:08:24 +01:00
|
|
|
"xmldom": "^0.2.1",
|
2019-10-01 22:14:15 +02:00
|
|
|
"xpath": "0.0.27"
|
|
|
|
|
},
|
|
|
|
|
"devDependencies": {
|
2020-01-23 00:08:24 +01:00
|
|
|
"eslint": "^6.8.0",
|
|
|
|
|
"jest": "^25.1.0"
|
2019-10-01 22:14:15 +02:00
|
|
|
}
|
|
|
|
|
}
|