-
-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
73 lines (73 loc) · 2.12 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
{
"name": "get-action-usage",
"version": "1.0.0",
"description": "Build a graph in a web page to show the usage of these GitHub Actions: run-cmake, get-cmake, run-vcpkg",
"license": "MIT",
"repository": "",
"author": {
"name": "luca cappa",
"email": "[email protected]",
"url": "https://lukka.github.io/graph/graph.html"
},
"keywords": [
"c++", "cmake", "vcpkg", "ninja"
],
"files": [
"lib"
],
"main": "lib/index",
"types": "lib/index",
"scripts": {
"clean": "rimraf lib && rimraf coverage",
"format": "prettier --write \"{src,__tests__}/**/*.ts\" --single-quote --trailing-comma es5",
"lint": "tslint --force --format verbose \"src/**/*.ts\"",
"prepublishOnly": "npm run build",
"prebuild": "npm run clean && npm run format && npm run lint && echo Using TypeScript && tsc --version",
"build": "tsc --pretty",
"test": "jest",
"coverage": "jest --coverage",
"watch": "npm run build -- --watch",
"watch:test": "jest --watch",
"pack": "npm run build && ncc build lib/main.js -o dist"
},
"dependencies": {
"@actions/core": "^1.10.1",
"@octokit/auth-token": "^2.5.0",
"@octokit/core": "^3.6.0",
"@octokit/openapi-types": "^11.2.0",
"@octokit/plugin-rest-endpoint-methods": "^5.13.0",
"@octokit/plugin-retry": "~3.0.9",
"@octokit/plugin-throttling": "^3.6.2",
"@octokit/rest": "^18.12.0",
"@octokit/types": "^6.34.0",
"@types/cli-progress": "^3.9.2",
"@types/http-errors": "^1.8.2",
"@types/node-json-db": "^0.9.3",
"cli-progress": "^3.10.0",
"dotenv": "^16.0.0",
"http-errors": "^2.0.0",
"lpf": "^1.0.0",
"node-json-db": "^1.5.0",
"ts-stopwatch": "^0.0.4"
},
"devDependencies": {
"@types/jest": "^23.3.3",
"@types/node": "^20.10.4",
"@vercel/ncc": "^0.38.1",
"coveralls": "^3.0.2",
"jest": "^23.6.0",
"prettier": "^1.19.1",
"rimraf": "^2.6.2",
"ts-jest": "^23.10.3",
"ts-node": "^10.9.2",
"tslint": "^5.11.0",
"tslint-config-prettier": "^1.15.0",
"typescript": "^4.6.3"
},
"engines": {
"node": ">=20.0.0"
},
"jest": {
"preset": "ts-jest"
}
}