generated from ActionsDesk/ps-typescript-template
-
Notifications
You must be signed in to change notification settings - Fork 4
/
package.json
83 lines (83 loc) · 2.26 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
{
"name": "enterprise-members-report-action",
"version": "1.1.5",
"description": "Action to generate a report as markdown, html or json with the members, outside collaborators and pending invites",
"keywords": [
"actions",
"email",
"typescript",
"report",
"license"
],
"author": {
"name": "GitHub Professional Services",
"email": "services@github.com",
"url": "https://services.github.com"
},
"contributors": [
{
"name": "Javier de Pedro López",
"email": "droidpl@github.com",
"url": "https://github.com/droidpl"
}
],
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/ActionsDest/enterprise-members-report-action.git"
},
"bugs": {
"url": "https://github.com/ActionsDest/enterprise-members-report-action/issues"
},
"publishConfig": {
"registry": "https://npm.pkg.github.com/"
},
"engines": {
"node": ">=16",
"npm": ">=8"
},
"main": "src/main.ts",
"scripts": {
"prepare": "husky install ./.github/husky",
"prebuild": "rimraf dist && tsc",
"build": "ncc build --source-map --out dist --license licenses.txt --quiet",
"format": "prettier --write **/*.ts",
"pretest": "npx eslint-config-prettier .eslintrc.json",
"test": "eslint src/**/*.ts && jest",
"all": "npm run format && npm run test && npm run build"
},
"dependencies": {
"@actions/core": "^1.10.0",
"@actions/github": "^5.1.1",
"@octokit/action": "^4.0.10",
"csv-parse": "^5.3.3",
"csv-string": "^4.1.1",
"marked": "^4.2.2"
},
"devDependencies": {
"@github/prettier-config": "^0.0.4",
"@octokit/types": "^8.0.0",
"@types/jest": "^29.2.5",
"@types/marked": "^4.0.7",
"@types/node": "^18.11.9",
"@typescript-eslint/parser": "^5.42.0",
"@vercel/ncc": "^0.34.0",
"eslint": "^8.27.0",
"eslint-plugin-github": "^4.4.1",
"eslint-plugin-jest": "^27.2.1",
"husky": "^8.0.3",
"jest": "^29.3.1",
"jest-circus": "^29.3.1",
"js-yaml": "^4.1.0",
"rimraf": "^3.0.2",
"ts-jest": "^29.0.3",
"typescript": "^4.8.4"
},
"husky": {
"hooks": {
"pre-commit": "./.github/husky/pre-commit",
"pre-push": "./.github/husky/pre-push"
}
},
"prettier": "@github/prettier-config"
}