forked from benchmark-action/github-action-benchmark
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
53 lines (53 loc) · 1.57 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
{
"name": "github-action-pull-request-benchmark",
"version": "1.4.0",
"private": true,
"description": "",
"main": "index.js",
"scripts": {
"build": "rm -rf lib && tsc && ncc build lib/src/index.js",
"watch:tsc": "tsc -p . --watch --preserveWatchOutput",
"watch:mocha": "mocha --watch ./lib/test",
"watch": "npm-run-all -p watch:tsc watch:mocha",
"lint": "eslint '**/*.ts'",
"mocha": "mocha ./lib/test",
"test": "npm-run-all build mocha",
"preversion": "npm run build && git add -A dist/index.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/openpgpjs/github-action-pull-request-benchmark.git"
},
"keywords": [
"github",
"action",
"benchmark"
],
"author": "larabr <https://github.com/larabr>",
"license": "MIT",
"bugs": {
"url": "https://github.com/openpgpjs/github-action-pull-request-benchmark/issues"
},
"homepage": "https://github.com/openpgpjs/github-action-pull-request-benchmark#readme",
"dependencies": {
"@actions/core": "^1.6.0",
"@actions/github": "^5.0.0"
},
"devDependencies": {
"@types/mocha": "^7.0.2",
"@types/node": "^13.9.1",
"@types/sinon": "^10.0.2",
"@typescript-eslint/eslint-plugin": "^2.24.0",
"@typescript-eslint/parser": "^2.24.0",
"@vercel/ncc": "^0.38.0",
"eslint": "^6.8.0",
"eslint-config-prettier": "^6.10.0",
"eslint-plugin-mocha": "^6.3.0",
"eslint-plugin-prettier": "^3.1.2",
"mocha": "^10.2.0",
"npm-run-all": "^4.1.5",
"prettier": "^1.19.1",
"sinon": "^15.2.0",
"typescript": "^3.9.10"
}
}