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",
|
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-02-28 09:11:20 +00:00
|
|
|
"@babel/core": "7.8.6",
|
2020-03-05 08:04:07 +00:00
|
|
|
"@babel/preset-env": "7.8.7",
|
2020-02-13 08:15:15 +00:00
|
|
|
"@zeit/ncc": "0.21.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",
|
2019-12-16 23:52:44 +00:00
|
|
|
"eslint-config-airbnb": "18.0.1",
|
2020-02-10 15:51:36 +00:00
|
|
|
"eslint-config-prettier": "6.10.0",
|
2020-02-11 09:25:31 +00:00
|
|
|
"eslint-plugin-flowtype": "4.6.0",
|
2020-02-10 08:15:58 +00:00
|
|
|
"eslint-plugin-import": "2.20.1",
|
2019-12-16 23:52:44 +00:00
|
|
|
"eslint-plugin-jsx-a11y": "6.2.3",
|
|
|
|
"eslint-plugin-prettier": "3.1.2",
|
2020-02-10 13:18:40 +00:00
|
|
|
"eslint-plugin-react": "7.18.3",
|
2020-02-12 08:54:29 +00:00
|
|
|
"eslint-plugin-unicorn": "16.1.1",
|
2020-02-13 07:47:05 +00:00
|
|
|
"husky": "4.2.3",
|
2020-02-08 16:36:06 +00:00
|
|
|
"jest": "25.1.0",
|
2020-02-27 23:04:30 +00:00
|
|
|
"lint-staged": "10.0.8",
|
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"
|
|
|
|
]
|
|
|
|
}
|
|
|
|
}
|