-
Notifications
You must be signed in to change notification settings - Fork 4
/
package.json
50 lines (50 loc) · 1.41 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
{
"name": "@tonyhallett/github-actions",
"version": "1.4.6",
"description": "Module for multiple github actions",
"main": "lib/index.js",
"files": [
"lib"
],
"keywords": [
"github",
"actions"
],
"homepage": "https://github.com/tonyhallett/github-actions#readme",
"bugs": "https://github.com/tonyhallett/github-actions/issues",
"repository": "github:tonyhallett/github-actions",
"scripts": {
"build": "tsc",
"test": "jest --collectCoverage",
"format": "prettier --write **/*.ts",
"format-check": "prettier --check **/*.ts",
"lint": "eslint src/**/*.ts",
"all": "npm run format && npm run lint && npm test",
"npmpublish": "npm publish --access public",
"prenpmpublish": "npm run build"
},
"dependencies": {
"@actions/core": "^1.2.6",
"@actions/exec": "^1.0.4",
"@actions/github": "^4.0.0",
"@octokit/webhooks-definitions": "^3.65.0",
"vs-parse": "^3.1.0"
},
"devDependencies": {
"@types/fs-extra": "^9.0.10",
"@types/jest": "^26.0.20",
"@types/node": "^14.14.32",
"@typescript-eslint/eslint-plugin": "^4.19.0",
"@typescript-eslint/parser": "^4.17.0",
"eslint": "^7.17.0",
"eslint-plugin-github": "^4.1.3",
"eslint-plugin-jest": "^24.1.10",
"fs-extra": "^9.1.0",
"jest": "^26.6.3",
"prettier": "2.2.1",
"ts-jest": "^26.5.3",
"typescript": "^4.2.3"
},
"author": "Tony Hallett",
"license": "ISC"
}