forked from benchmark-action/github-action-benchmark
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
65 lines (65 loc) · 1.88 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
{
"name": "github-action-benchmark",
"version": "0.0.0",
"private": true,
"description": "",
"main": "dist/src/index.js",
"scripts": {
"build": "tsc -p tsconfig.build.json",
"lint": "eslint '**/*.{ts,js}'",
"fix": "eslint --fix '**/*.{ts,js}'",
"format": "prettier -w **",
"format:check": "prettier -c **",
"test": "jest",
"test:watch": "jest --watch",
"coverage": "jest --coverage",
"coverage:open": "jest --coverage && open ./coverage/lcov-report/index.html"
},
"repository": {
"type": "git",
"url": "git+https://github.com/benchmark-action/github-action-benchmark.git"
},
"keywords": [
"github",
"action",
"benchmark"
],
"author": "github-action-benchmark developers <https://github.com/benchmark-action>",
"license": "MIT",
"bugs": {
"url": "https://github.com/benchmark-action/github-action-benchmark/issues"
},
"homepage": "https://github.com/benchmark-action/github-action-benchmark#readme",
"dependencies": {
"@actions/core": "^1.10.0",
"@actions/exec": "^1.1.1",
"@actions/github": "^2.1.1",
"@actions/io": "^1.1.2"
},
"devDependencies": {
"@types/acorn": "^4.0.5",
"@types/cheerio": "^0.22.16",
"@types/deep-diff": "^1.0.0",
"@types/deep-equal": "^1.0.1",
"@types/jest": "^27.0.3",
"@types/markdown-it": "^12.2.3",
"@types/node": "^13.9.1",
"@types/rimraf": "^2.0.3",
"@typescript-eslint/eslint-plugin": "^5.4.0",
"@typescript-eslint/parser": "^5.4.0",
"acorn": "^7.1.1",
"cheerio": "^1.0.0-rc.3",
"deep-diff": "^1.0.2",
"deep-equal": "^2.0.1",
"eslint": "^8.2.0",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-jest": "^25.2.4",
"eslint-plugin-prettier": "^4.0.0",
"jest": "^27.3.1",
"markdown-it": "^12.3.2",
"prettier": "^2.4.1",
"rimraf": "^3.0.2",
"ts-jest": "^27.0.7",
"typescript": "^4.5.2"
}
}