-
Notifications
You must be signed in to change notification settings - Fork 23
/
package.json
50 lines (50 loc) · 1.33 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": "issue-dashboard",
"version": "1.0.0",
"description": "A customizable dashboard for GitHub issues and pull requests, using GitHub Pages and GitHub Actions.",
"main": "lib/main.js",
"scripts": {
"build": "tsc",
"format": "prettier --write **/*.ts",
"format-check": "prettier --check **/*.ts",
"lint": "eslint src/**/*.ts",
"pack": "npm run build && ncc build",
"test": "mocha -r ts-node/register test/**/*.ts"
},
"repository": {
"type": "git",
"url": "git+https://github.com/ethomson/issue-dashboard.git"
},
"keywords": [
"GitHub",
"issues",
"actions",
"dashboard"
],
"author": "Edward Thomson",
"license": "MIT",
"bugs": {
"url": "https://github.com/ethomson/issue-dashboard/issues"
},
"homepage": "https://github.com/ethomson/issue-dashboard#readme",
"dependencies": {
"@actions/core": "^1.10.0",
"@actions/github": "^5.1.1",
"@types/js-yaml": "^3.12.3",
"dayjs": "^1.11.7",
"js-yaml": "^3.13.1"
},
"devDependencies": {
"@types/chai": "^4.3.4",
"@types/mocha": "^10.0.1",
"@zeit/ncc": "^0.21.1",
"chai": "^4.3.7",
"eslint": "^6.8.0",
"eslint-plugin-github": "^3.4.1",
"eslint-plugin-jest": "^23.8.2",
"mocha": "^10.2.0",
"prettier": "^1.19.1",
"ts-node": "^10.9.1",
"typescript": "^3.8.3"
}
}