-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
57 lines (57 loc) · 2.13 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
55
56
57
{
"name": "vigilant-action",
"version": "0.0.1",
"private": true,
"description": "Vigilant build github action",
"main": "lib/main.js",
"scripts": {
"prepare": "husky install",
"cli": "ts-node src/main.ts",
"lint": "eslint src/ --ext .js,.jsx,.ts,.tsx",
"test": "jest",
"clean": "rm -rf dist build package",
"ts-node": "ts-node",
"docs": "typedoc --entryPoints src/main.ts",
"build": "tsc -p tsconfig.json",
"build-node": "yarn clean && yarn build && yarn esbuild-node:main && yarn esbuild-node:pre && yarn esbuild-node:post",
"esbuild-node:pre": "esbuild src/pre.ts --bundle --platform=node --minify --sourcemap=external --outfile=dist/pre.js",
"esbuild-node:watch:pre": "esbuild src/pre.ts --bundle --watch --platform=node --minify --sourcemap=external --outfile=dist/pre.js",
"esbuild-node:main": "esbuild src/main.ts --bundle --platform=node --minify --sourcemap=external --outfile=dist/main.js",
"esbuild-node:watch:main": "esbuild src/main.ts --bundle --watch --platform=node --minify --sourcemap=external --outfile=dist/main.js",
"esbuild-node:post": "esbuild src/post.ts --bundle --platform=node --minify --sourcemap=external --outfile=dist/post.js",
"esbuild-node:watch:post": "esbuild src/post.ts --bundle --watch --platform=node --minify --sourcemap=external --outfile=dist/post.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/imorphio/vigilant-action.git"
},
"keywords": [
"actions",
"node",
"setup"
],
"author": "[email protected]",
"license": "MIT",
"dependencies": {
"@actions/core": "^1.10.0",
"@octokit/rest": "~18.12.0",
"archiver": "^5.3.1",
"axios": "^1.2.6",
"form-data": "^4.0.0"
},
"devDependencies": {
"@types/archiver": "^5.3.1",
"@types/jest": "^26.0.21",
"@types/node": "^15.0.1",
"@typescript-eslint/eslint-plugin": "^4.19.0",
"@typescript-eslint/parser": "^4.19.0",
"esbuild": "^0.11.11",
"eslint": "^7.22.0",
"husky": "^7.0.1",
"jest": "^26.6.3",
"ts-jest": "^26.5.4",
"ts-node": "^9.1.1",
"typedoc": "^0.20.37",
"typescript": "^4.2.3"
}
}