unity-test-runner/package.json

59 lines
1.5 KiB
JSON
Raw Normal View History

2020-01-29 20:49:35 +00:00
{
"name": "unity-test-runner",
"version": "0.0.0",
"description": "Run tests for any Unity project.",
"main": "action/index.js",
"repository": "git@github.com:webbertakken/unity-test-runner.git",
"author": "Webber <webber@takken.io>",
"license": "MIT",
"scripts": {
2020-03-09 22:58:40 +00:00
"prebuild": "yarn",
2020-01-29 20:49:35 +00:00
"build": "ncc build src --out action --minify",
"lint": "prettier --check \"src/**/*.js\" && eslint src",
"test": "jest"
},
"dependencies": {
"@actions/core": "^1.2.6",
"@actions/exec": "1.0.4",
"@actions/github": "^4.0.0"
2020-01-29 20:49:35 +00:00
},
"devDependencies": {
"@babel/cli": "7.12.10",
"@babel/core": "7.12.10",
"@babel/preset-env": "7.12.11",
"@zeit/ncc": "0.22.3",
"babel-eslint": "10.1.0",
"eslint": "7.17.0",
"eslint-config-airbnb": "18.2.1",
"eslint-config-prettier": "7.1.0",
"eslint-plugin-flowtype": "5.2.0",
"eslint-plugin-import": "2.22.1",
"eslint-plugin-jsx-a11y": "6.4.1",
"eslint-plugin-prettier": "3.3.1",
"eslint-plugin-react": "7.22.0",
"eslint-plugin-unicorn": "25.0.1",
"husky": "4.3.7",
"jest": "26.6.3",
"lint-staged": "10.5.3",
"lodash-es": "4.17.20",
"prettier": "2.2.1"
2020-01-29 20:49:35 +00:00
},
"husky": {
"hooks": {
"pre-commit": "lint-staged && yarn build && git add action/index.js"
}
},
"lint-staged": {
"*.{js,jsx}": [
"prettier --write",
"eslint",
"git add",
"jest --findRelatedTests"
],
"*.{json,md,yaml,yml}": [
"prettier --write",
"git add"
]
}
}