forked from benchmark-action/github-action-benchmark
-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
79 lines (79 loc) · 2.25 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
{
"name": "github-action-benchmark",
"version": "0.0.0",
"private": true,
"description": "",
"main": "src/index.js",
"scripts": {
"build": "tsc -p .",
"watch:tsc": "tsc -p . --watch --preserveWatchOutput",
"watch:mocha": "mocha --watch ./test",
"watch": "npm-run-all -p watch:tsc watch:mocha",
"lint": "eslint '**/*.ts'",
"fix": "eslint --fix '**/*.ts'",
"mocha": "mocha ./test",
"test": "npm-run-all build mocha",
"coverage": "nyc --reporter=lcov --reporter=text npm run mocha",
"cov": "nyc --reporter=lcov --reporter=text-summary npm run mocha && open ./coverage/lcov-report/index.html"
},
"repository": {
"type": "git",
"url": "git+https://github.com/rhysd/github-action-benchmark.git"
},
"keywords": [
"github",
"action",
"benchmark"
],
"author": "rhysd <https://rhysd.github.io>",
"license": "MIT",
"bugs": {
"url": "https://github.com/rhysd/github-action-benchmark/issues"
},
"homepage": "https://github.com/rhysd/github-action-benchmark#readme",
"dependencies": {
"@actions/core": "^1.2.6",
"@actions/exec": "^1.0.3",
"@actions/github": "^2.1.1",
"@actions/io": "^1.0.2"
},
"devDependencies": {
"@istanbuljs/nyc-config-typescript": "^1.0.1",
"@types/acorn": "^4.0.5",
"@types/cheerio": "^0.22.16",
"@types/deep-diff": "^1.0.0",
"@types/deep-equal": "^1.0.1",
"@types/markdown-it": "0.0.9",
"@types/mocha": "^7.0.2",
"@types/mock-require": "^2.0.0",
"@types/node": "^13.9.1",
"@types/rimraf": "^2.0.3",
"@typescript-eslint/eslint-plugin": "^2.24.0",
"@typescript-eslint/parser": "^2.24.0",
"acorn": "^7.1.1",
"cheerio": "^1.0.0-rc.3",
"deep-diff": "^1.0.2",
"deep-equal": "^2.0.1",
"eslint": "^6.8.0",
"eslint-config-prettier": "^6.10.0",
"eslint-plugin-mocha": "^6.3.0",
"eslint-plugin-prettier": "^3.1.2",
"husky": "^4.2.3",
"markdown-it": "^10.0.0",
"mocha": "^7.1.0",
"mock-require": "^3.0.3",
"npm-run-all": "^4.1.5",
"nyc": "^15.0.0",
"prettier": "^1.19.1",
"rimraf": "^3.0.2",
"typescript": "^3.8.3"
},
"husky": {
"hooks": {
"pre-push": "npm-run-all -p lint test"
}
},
"nyc": {
"extends": "@istanbuljs/nyc-config-typescript"
}
}