-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
41 lines (41 loc) · 1.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
{
"name": "nix-install-pkgs-action",
"private": true,
"version": "5.0.0",
"description": "Install flake packages using an ephemeral Nix profile",
"main": "index.js",
"scripts": {
"build": "tsc && ncc build -o dist/main lib/main.js && ncc build -o dist/post lib/post.js",
"format": "prettier --write **/*.ts",
"check-format": "prettier --check **/*.ts",
"test": "jest --useStderr >/dev/null",
"test-no-recursive-nix": "jest --testPathIgnorePatterns 'nix.test' --useStderr >/dev/null",
"coverage": "jest --coverage"
},
"repository": {
"type": "git",
"url": "git+https://github.com/yaxitech/nix-install-pkgs-action"
},
"keywords": [
"actions",
"node",
"setup"
],
"author": "YAXI Team",
"license": "Apache-2.0",
"dependencies": {
"@actions/core": ">=1.9.1",
"@actions/exec": "^1.1.1",
"@actions/github": "^5.0.1"
},
"devDependencies": {
"@types/jest": "^29.5.14",
"@types/node": "^20.11.1",
"@vercel/ncc": "^0.38.2",
"jest": "^29.7.0",
"jest-mock": "^29.7.0",
"prettier": "^3.3.3",
"ts-jest": "^29.2.5",
"typescript": "^5.6.3"
}
}