generated from actions/typescript-action
-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
87 lines (87 loc) · 2.27 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
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
{
"name": "ghec-enterprise-reporting",
"version": "2.0.1",
"private": true,
"description": "GitHub Action to compile a usage and billing information from a GitHub Enterprise Cloud account into a reporting issue.",
"keywords": [
"actions",
"node",
"typescript",
"github enterprise",
"github api"
],
"author": {
"name": "GitHub Professional Services",
"email": "services@github.com",
"url": "https://services.github.com"
},
"contributors": [
{
"name": "Froilán Irizarry Rivera",
"email": "1918027+froi@users.noreply.github.com"
},
{
"name": "Stefan Stölzle",
"email": "stoe@github.com",
"url": "https://github.com/stoe"
}
],
"license": "MIT",
"repository": "github:ActionsDesk/ghec-enterprise-reporting",
"engines": {
"node": ">=14",
"npm": ">=7"
},
"main": "lib/main.js",
"scripts": {
"build": "rimraf lib dist && tsc -b",
"format": "prettier --write **/*.ts",
"format-check": "prettier --check **/*.ts",
"lint": "eslint **/*.ts",
"package": "npx @vercel/ncc build --source-map --license licenses.txt --quiet --minify && copyfiles -Vu 1 src/templates/**/* dist",
"test": "jest",
"all": "npm run format && npm run lint && npm test && npm run build && npm run package",
"prepare": "husky install"
},
"dependencies": {
"@actions/core": "^1.10.0",
"@actions/github": "^5.1.1",
"@octokit/plugin-enterprise-cloud": "^8.1.0",
"@octokit/plugin-throttling": "^4.3.2",
"eta": "^1.12.3",
"moment": "^2.29.4"
},
"devDependencies": {
"@types/jest": "^29.2.2",
"@types/node": "^18.11.9",
"@typescript-eslint/parser": "^5.42.1",
"@vercel/ncc": "^0.34.0",
"copyfiles": "^2.4.1",
"eslint": "^8.27.0",
"eslint-plugin-github": "^4.4.1",
"eslint-plugin-jest": "^27.1.5",
"husky": "^8.0.2",
"jest": "^29.3.1",
"jest-circus": "^29.3.1",
"js-yaml": "^4.1.0",
"lint-staged": "^13.0.3",
"nock": "^13.2.9",
"prettier": "2.7.1",
"rimraf": "^3.0.2",
"ts-jest": "^29.0.3",
"typescript": "^4.8.4"
},
"lint-staged": {
"*.{ts,js,md}": [
"npm run format"
],
"*.{ts,js}": [
"npm run lint"
]
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
}
}