2019-12-16 23:52:44 +00:00
|
|
|
{
|
|
|
|
"name": "unity-builder",
|
2020-01-07 20:55:01 +00:00
|
|
|
"version": "0.5.0",
|
2019-12-16 23:52:44 +00:00
|
|
|
"description": "Build Unity projects for different platforms.",
|
2020-02-01 19:21:22 +00:00
|
|
|
"main": "action/index.js",
|
2019-12-16 23:52:44 +00:00
|
|
|
"repository": "git@github.com:webbertakken/unity-builder.git",
|
|
|
|
"author": "Webber <webber@takken.io>",
|
|
|
|
"license": "MIT",
|
|
|
|
"scripts": {
|
2020-02-01 19:21:22 +00:00
|
|
|
"build": "ncc build src --out action --minify",
|
2019-12-17 00:01:41 +00:00
|
|
|
"lint": "prettier --check \"src/**/*.js\" && eslint src",
|
2019-12-22 14:05:15 +00:00
|
|
|
"test": "jest"
|
2019-12-16 23:52:44 +00:00
|
|
|
},
|
|
|
|
"dependencies": {
|
2020-02-08 18:11:17 +00:00
|
|
|
"@actions/core": "^1.2.2",
|
2020-02-09 06:11:30 +00:00
|
|
|
"@actions/exec": "1.0.3",
|
2019-12-16 23:52:44 +00:00
|
|
|
"@actions/github": "^2.0.0"
|
|
|
|
},
|
|
|
|
"devDependencies": {
|
2020-02-08 11:35:21 +00:00
|
|
|
"@babel/cli": "7.8.4",
|
2019-12-16 23:52:44 +00:00
|
|
|
"@babel/core": "7.7.5",
|
2020-02-08 17:52:44 +00:00
|
|
|
"@babel/preset-env": "7.8.4",
|
2019-12-17 18:33:09 +00:00
|
|
|
"@zeit/ncc": "0.20.5",
|
2019-12-16 23:52:44 +00:00
|
|
|
"babel-eslint": "10.0.3",
|
|
|
|
"eslint": "6.7.2",
|
|
|
|
"eslint-config-airbnb": "18.0.1",
|
|
|
|
"eslint-config-prettier": "6.7.0",
|
|
|
|
"eslint-plugin-flowtype": "4.5.2",
|
|
|
|
"eslint-plugin-import": "2.19.1",
|
|
|
|
"eslint-plugin-jsx-a11y": "6.2.3",
|
|
|
|
"eslint-plugin-prettier": "3.1.2",
|
|
|
|
"eslint-plugin-react": "7.17.0",
|
2020-02-08 14:14:33 +00:00
|
|
|
"eslint-plugin-unicorn": "16.0.0",
|
2019-12-17 18:33:09 +00:00
|
|
|
"husky": "4.0.0-beta.5",
|
2020-02-08 16:36:06 +00:00
|
|
|
"jest": "25.1.0",
|
2019-12-16 23:52:44 +00:00
|
|
|
"lint-staged": "9.5.0",
|
2019-12-22 14:05:15 +00:00
|
|
|
"lodash-es": "4.17.15",
|
2019-12-16 23:52:44 +00:00
|
|
|
"prettier": "1.19.1"
|
|
|
|
},
|
|
|
|
"husky": {
|
|
|
|
"hooks": {
|
2020-02-01 19:21:22 +00:00
|
|
|
"pre-commit": "lint-staged && yarn build && git add action/index.js"
|
2019-12-16 23:52:44 +00:00
|
|
|
}
|
|
|
|
},
|
|
|
|
"lint-staged": {
|
|
|
|
"*.{js,jsx}": [
|
|
|
|
"prettier --write",
|
|
|
|
"eslint",
|
2019-12-17 00:01:41 +00:00
|
|
|
"git add",
|
|
|
|
"jest --findRelatedTests"
|
2019-12-16 23:52:44 +00:00
|
|
|
],
|
2019-12-17 21:48:54 +00:00
|
|
|
"*.{json,md,yaml,yml}": [
|
2019-12-16 23:52:44 +00:00
|
|
|
"prettier --write",
|
|
|
|
"git add"
|
|
|
|
]
|
|
|
|
}
|
|
|
|
}
|