-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
72 lines (72 loc) · 1.88 KB
/
Copy pathpackage.json
File metadata and controls
72 lines (72 loc) · 1.88 KB
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
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
{
"name": "typescript-action",
"version": "0.0.0",
"private": true,
"description": "ssh proxy action",
"main": "dist/index.js",
"scripts": {
"build": "ncc build src/main.ts",
"format": "prettier --write **/*.ts",
"format-check": "prettier --check **/*.ts",
"lint": "eslint src/**/*.ts",
"pack": "ncc build",
"test": "jest",
"all": "npm run build && npm run format && npm run lint && npm run pack && npm test"
},
"husky": {
"hooks": {
"pre-commit": "npm run build && git add dist/"
}
},
"repository": {
"type": "git",
"url": "git+https://github.com/mchirico/sshproxy-action.git"
},
"keywords": [
"actions",
"node",
"setup"
],
"author": "CWXSTAT",
"license": "MIT",
"dependencies": {
"@actions/core": "^1.2.3",
"@actions/exec": "^1.0.4",
"@actions/github": "^2.1.1",
"@actions/io": "^1.0.2",
"@actions/tool-cache": "^1.3.4",
"@babel/parser": "^7.9.6",
"@lifeomic/attempt": "^3.0.0",
"@types/babel__parser": "^7.1.1",
"flow-bin": "^0.118.0",
"semver": "^7.3.2",
"tmp": "^0.1.0",
"typed-rest-client": "^1.7.3",
"uuid": "^3.4.0"
},
"devDependencies": {
"@types/jest": "^24.0.22",
"@types/js-base64": "^2.3.1",
"@types/node": "^12.12.37",
"@types/semver": "^6.0.0",
"@types/tmp": "^0.1.0",
"@types/uuid": "^3.4.9",
"@typescript-eslint/eslint-plugin": "^2.30.0",
"@typescript-eslint/parser": "^2.30.0",
"@zeit/ncc": "^0.20.5",
"acorn": "^7.1.1",
"acorn-jsx": "^5.2.0",
"eslint": "^6.6.0",
"eslint-config-prettier": "^6.11.0",
"eslint-plugin-github": "^3.4.1",
"eslint-plugin-jest": "^23.8.2",
"eslint-plugin-prettier": "^3.1.3",
"graphql": "^14.6.0",
"husky": "^4.2.5",
"jest": "^24.9.0",
"jest-circus": "^24.7.1",
"prettier": "^1.18.2",
"ts-jest": "^24.1.0",
"typescript": "^3.8.3"
}
}