compose-action/package.json
Il Sub Bang (ethan) 32a62d9746
chore: apply styling (#10)
* chore: use eslint and prettier

* chore: add ci test for eslint and prettier

* remove node_modules

* add missing npm install
2022-10-05 18:15:19 +09:00

25 lines
619 B
JSON

{
"name": "compose-action",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"lint": "eslint .",
"format": "prettier --write \"**/*.{js,json}\"",
"check-format": "prettier --check \"**/*.{js,json}\""
},
"keywords": [],
"author": "",
"license": "ISC",
"devDependencies": {
"@actions/core": "^1.8.2",
"@actions/github": "^4.0.0",
"docker-compose": "^0.23.5",
"eslint": "^8.24.0",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-prettier": "^4.2.1",
"prettier": "^2.7.1"
}
}