forked from bryanmacfarlane/project-reports-action
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
51 lines (51 loc) · 1.28 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
{
"name": "issue-reports",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"build": "./build.sh",
"test": "jest",
"check:format": "prettier --write *.ts **/*.ts",
"check:lint": "eslint *.ts **/*.ts __tests__ github reports types",
"check:compile": "tsc",
"check": "run-s check:format check:lint check:compile"
},
"husky": {
"hooks": {
"pre-commit": "npm run check"
}
},
"keywords": [],
"author": "",
"license": "ISC",
"dependencies": {
"@actions/core": "^1.2.4",
"@actions/github": "^4.0.0",
"@octokit/rest": "^18.0.0",
"clone": "^2.1.2",
"https-proxy-agent": "^5.0.0",
"js-yaml": "^3.14.0",
"moment": "^2.27.0",
"mustache": "^4.0.1",
"sanitize-filename": "^1.6.3",
"tablemark": "^2.0.0"
},
"devDependencies": {
"@types/jest": "^26.0.5",
"@types/js-yaml": "^3.12.5",
"@types/mustache": "^4.0.1",
"@types/node": "^14.0.23",
"@typescript-eslint/eslint-plugin": "^3.9.1",
"@typescript-eslint/parser": "^3.9.1",
"@zeit/ncc": "^0.22.3",
"eslint": "^7.7.0",
"eslint-config-prettier": "^6.11.0",
"husky": "^4.2.5",
"jest": "^26.1.0",
"npm-run-all": "^4.1.5",
"prettier": "^2.0.5",
"ts-jest": "^26.1.3",
"typescript": "^3.9.6"
}
}