-
-
Notifications
You must be signed in to change notification settings - Fork 16
/
package.json
61 lines (61 loc) · 1.79 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
{
"name": "get-cmake-action",
"version": "0.0.1",
"description": "GitHub action to get CMake and ninja installed and cached on the GitHub runner.",
"repository": {
"type": "git",
"url": "https://github.com/lukka/run-cmake-action"
},
"author": "Luca Cappa (https://github.com/lukka)",
"license": "MIT",
"scripts": {
"pack": "gulp && ncc build build/src/action.js -o dist",
"clean": "rm -rf ./build",
"build": "gulp build",
"lint": "gulp eslint",
"test": "npm run pack && gulp test",
"generate-catalog": "npx jest --config=./jest.config-generate-catalog.js"
},
"devDependencies": {
"@octokit/plugin-rest-endpoint-methods": "10.1.2",
"@octokit/plugin-retry": "6.0.1",
"@octokit/plugin-throttling": "^8.1.2",
"@types/node": "^16.0.0",
"@types/semver": "^7.3.13",
"@typescript-eslint/eslint-plugin": "^6.9.0",
"@typescript-eslint/parser": "^6.9.0",
"@vercel/ncc": "^0.34.0",
"dotenv": "^16.0.3",
"eslint": "^8.52.0",
"eslint-plugin-jest": "^27.6.0",
"gulp": "5.0.0",
"gulp-eslint": "6.0.0",
"gulp-install": "^1.1.0",
"gulp-jest": "^4.0.3",
"gulp-sourcemaps": "^2.6.5",
"gulp-typescript": "^4.0.0",
"jest": "^29.2.1",
"jest-circus": "^29.7.0",
"ts-jest": "^29.0.3",
"ts-node": "^10.9.1",
"typescript": "^4.0.3"
},
"overrides": {
"graceful-fs": "^4.2.11"
},
"dependencies": {
"@actions/cache": "^3.0.6",
"@actions/core": "^1.10.0",
"@actions/exec": "^1.1.1",
"@actions/io": "^1.1.2",
"@actions/tool-cache": "^2.0.1",
"@octokit/core": "5.0.1",
"@octokit/plugin-paginate-rest": "^5.0.1",
"@types/jest": "^29.2.0",
"install": "^0.13.0",
"jest-cli": "^29.2.1",
"node-notifier": ">=8.0.1",
"octokit": "^3.1.2",
"semver": "^7.5.2"
}
}