-
-
Notifications
You must be signed in to change notification settings - Fork 26
/
package.json
59 lines (59 loc) · 1.85 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
{
"name": "run-vcpkg-action",
"version": "11.0.0",
"description": "GitHub action for running vcpkg with Binary Caching stored on the GitHub Action cache.",
"repository": {
"type": "git",
"url": "https://github.com/lukka/run-vcpkg-action"
},
"author": "Luca Cappa (https://github.com/lukka)",
"license": "MIT",
"scripts": {
"clean": "rm -rf ./build",
"deployAssets": "cp ./node_modules/@lukka/assets-lib/src/matchers/*.json ./dist/",
"build": "npm run deployAssets && npx tsc",
"lint": "npx eslint .",
"test": "npx jest",
"pack": "npx ncc build build/src/action.js -o dist",
"repack": "npm run build && npm run deployAssets && npm run lint && npm run pack"
},
"devDependencies": {
"@types/node": "^20.8.9",
"@typescript-eslint/eslint-plugin": "^6.9.0",
"@typescript-eslint/parser": "^6.9.1",
"@vercel/ncc": "^0.38.1",
"eslint": "^8.52.0",
"eslint-plugin-jest": "^27.6.0",
"eslint-plugin-prettier": "^5.0.1",
"jest": "^29.7.0",
"jest-circus": "^29.7.0",
"minimist": ">=1.2.6",
"ts-jest": "^29.1.1",
"ts-node": "^10.9.1",
"typescript": "^5.2.2",
"yargs-parser": ">=13.1.2"
},
"dependencies": {
"@actions/cache": "3.2.2",
"@actions/core": "^1.10.1",
"@actions/exec": "^1.1.1",
"@actions/github": "6.0.0",
"@actions/glob": "^0.4.0",
"@actions/io": "^1.1.3",
"@lukka/action-lib": "^4.1.2",
"@lukka/assets-lib": "^4.1.2",
"@lukka/base-lib": "^4.1.2",
"@lukka/base-util-lib": "^4.1.2",
"@lukka/run-vcpkg-lib": "^4.1.2",
"@types/adm-zip": "^0.4.32",
"@types/follow-redirects": "^1.14.1",
"@types/jest": "29.5.6",
"adm-zip": "0.5.10",
"follow-redirects": "^1.15.6",
"ini": ">=1.3.6",
"jest-cli": "29.7.0",
"lodash.template": ">=4.5.0",
"node-notifier": ">=8.0.1",
"strip-json-comments": "^3.0.1"
}
}