-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
60 lines (60 loc) · 1.83 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
{
"name": "github-build-stats-action",
"version": "1.0.1",
"description": "GitHub Action workflow run trends",
"main": "dist/index.js",
"license": "MIT",
"private": true,
"repository": {
"type": "git",
"url": "https://github.com/getoslash/github-build-stats-action"
},
"scripts": {
"build": "tsc && ncc build lib/main.js --license licenses.txt && npx rimraf lib/",
"test": "tape -r ts-node/register/transpile-only tests/**/*.test.ts",
"coverage": "nyc npm run test",
"lint": "tsc --noEmit && eslint --cache \"**/*.ts\"",
"lint:fix": "npm run lint -- --fix",
"preprepare": "husky install",
"prepare": "npm run build",
"release": "semantic-release"
},
"dependencies": {
"@actions/core": "1.9.1",
"@actions/github": "5.0.0",
"@octokit/rest": "18.12.0",
"dayjs": "1.10.7",
"percentile": "1.6.0"
},
"devDependencies": {
"@commitlint/cli": "15.0.0",
"@commitlint/config-conventional": "15.0.0",
"@semantic-release/commit-analyzer": "9.0.2",
"@semantic-release/exec": "6.0.3",
"@semantic-release/git": "10.0.1",
"@semantic-release/github": "8.0.2",
"@semantic-release/release-notes-generator": "10.0.3",
"@types/node": "16.4.10",
"@types/tape": "4.13.2",
"@typescript-eslint/eslint-plugin": "5.7.0",
"@typescript-eslint/parser": "5.7.0",
"@vercel/ncc": "0.33.0",
"cz-conventional-changelog": "3.3.0",
"eslint": "8.4.1",
"eslint-config-prettier": "8.3.0",
"eslint-plugin-import": "2.25.3",
"eslint-plugin-prettier": "4.0.0",
"git-notify": "0.2.3",
"hook-std": "2.0.0",
"husky": "7.0.4",
"lint-staged": "12.1.2",
"nock": "13.2.1",
"nyc": "15.1.0",
"prettier": "2.5.1",
"rimraf": "3.0.2",
"semantic-release": "18.0.1",
"tape": "5.3.2",
"ts-node": "10.4.0",
"typescript": "4.5.4"
}
}