generated from actions/typescript-action
-
Notifications
You must be signed in to change notification settings - Fork 40
/
package.json
42 lines (42 loc) · 981 Bytes
/
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
{
"name": "cachix-action",
"version": "1.0.0",
"private": true,
"description": "nix-build with the help of caching to Cachix",
"main": "dist/main/index.js",
"scripts": {
"build": "tsc && ncc build -o dist/main src/main.ts",
"test": "echo NO TEST"
},
"repository": {
"type": "git",
"url": "git+https://github.com/cachix/cachix-action.git"
},
"keywords": [
"actions",
"node",
"setup"
],
"author": "Domen Kožar",
"license": "ASL2",
"dependencies": {
"@actions/core": "^1.10.0",
"@actions/exec": "^1.1.1",
"semver": "^7.5.4",
"tail": "^2.2.6",
"which": "^5.0.0"
},
"devDependencies": {
"@types/jest": "^29.5.3",
"@types/node": "^22.9.0",
"@types/semver": "^7.5.4",
"@types/tail": "^2.2.1",
"@types/which": "^3.0.0",
"@vercel/ncc": "^0.38.3",
"jest": "^29.6.2",
"jest-circus": "^29.6.2",
"ts-jest": "^29.1.1",
"ts-node": "^10.9.1",
"typescript": "^5.1.6"
}
}