forked from unity-sds/unity-cs-action
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
54 lines (54 loc) · 1.52 KB
/
package.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
{
"name": "unity-cs-action",
"version": "1.0.0",
"description": "",
"main": "lib/main.js",
"scripts": {
"build:bundle": "npm run build:types && node ./esbuild.config.mjs",
"build:types": "tsc",
"format:check": "prettier --check **/*.ts",
"format:write": "npm run format:check -- --write",
"lint": "eslint --ext \".js,.ts\" .",
"lint:fix": "npm run lint -- --fix",
"release": "release-it",
"test": "jest"
},
"repository": {
"type": "git",
"url": "git+https://github.com/unity-sds/unity-cs-action.git"
},
"keywords": [],
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/unity-sds/unity-cs-action/issues"
},
"homepage": "https://github.com/unity-sds/unity-cs-action#readme",
"dependencies": {
"@actions/core": "^1.10.0",
"@actions/github": "^5.1.1",
"return-dispatch": "github:Codex-/return-dispatch",
"uuid": "^9.0.0"
},
"devDependencies": {
"@types/jest": "^29.0.3",
"@types/node": "^18.7.18",
"@types/uuid": "^8.3.4",
"@typescript-eslint/parser": "^5.37.0",
"chalk": "^5.0.1",
"esbuild": "^0.15.7",
"eslint": "^8.23.1",
"eslint-config-airbnb-typescript": "^17.0.0",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-github": "^4.3.7",
"eslint-plugin-import": "^2.26.0",
"eslint-plugin-jest": "^27.0.4",
"jest": "^29.0.3",
"jest-circus": "^29.0.3",
"prettier": "2.7.1",
"release-it": "^15.4.2",
"ts-jest": "^29.0.1",
"ts-node": "^10.9.1",
"typescript": "^4.8.3"
}
}