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-03-09 22:37:39 +00:00
|
|
|
"prebuild": "yarn",
|
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-05-01 14:42:45 +00:00
|
|
|
"@actions/core": "^1.2.4",
|
|
|
|
"@actions/exec": "1.0.4",
|
2020-02-21 07:53:31 +00:00
|
|
|
"@actions/github": "^2.1.1"
|
2019-12-16 23:52:44 +00:00
|
|
|
},
|
|
|
|
"devDependencies": {
|
2020-02-08 11:35:21 +00:00
|
|
|
"@babel/cli": "7.8.4",
|
2020-05-01 14:42:45 +00:00
|
|
|
"@babel/core": "7.9.6",
|
|
|
|
"@babel/preset-env": "7.9.6",
|
|
|
|
"@zeit/ncc": "0.22.1",
|
2020-02-26 08:05:57 +00:00
|
|
|
"babel-eslint": "10.1.0",
|
2020-02-11 07:46:03 +00:00
|
|
|
"eslint": "6.8.0",
|
2020-05-01 14:42:45 +00:00
|
|
|
"eslint-config-airbnb": "18.1.0",
|
|
|
|
"eslint-config-prettier": "6.11.0",
|
|
|
|
"eslint-plugin-flowtype": "4.7.0",
|
|
|
|
"eslint-plugin-import": "2.20.2",
|
2019-12-16 23:52:44 +00:00
|
|
|
"eslint-plugin-jsx-a11y": "6.2.3",
|
2020-05-01 14:42:45 +00:00
|
|
|
"eslint-plugin-prettier": "3.1.3",
|
2020-03-09 22:48:57 +00:00
|
|
|
"eslint-plugin-react": "7.19.0",
|
2020-05-01 14:42:45 +00:00
|
|
|
"eslint-plugin-unicorn": "19.0.1",
|
|
|
|
"husky": "4.2.5",
|
|
|
|
"jest": "25.5.3",
|
|
|
|
"lint-staged": "10.2.2",
|
2019-12-22 14:05:15 +00:00
|
|
|
"lodash-es": "4.17.15",
|
2020-05-01 14:42:45 +00:00
|
|
|
"prettier": "2.0.5"
|
2019-12-16 23:52:44 +00:00
|
|
|
},
|
|
|
|
"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"
|
|
|
|
]
|
|
|
|
}
|
|
|
|
}
|