-
Notifications
You must be signed in to change notification settings - Fork 7
/
package.json
47 lines (47 loc) · 1.3 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
{
"name": "setup-conda",
"version": "1.0.2",
"private": true,
"description": "Github Action to install conda",
"main": "dist/index.js",
"scripts": {
"test_build": "tsc",
"watch_test_build": "tsc -w",
"package": "ncc build src/main.ts -o dist",
"release-compare-file": "ncc build src/main.ts -o compare",
"format": "biome format --write --files-ignore-unknown=true --no-errors-on-unmatched",
"lint": "biome check --write --files-ignore-unknown=true --no-errors-on-unmatched",
"test": "jest",
"upgrade-deps": "ncu --upgrade"
},
"repository": {
"type": "git",
"url": "git+https://github.com/s-weigand/setup-conda.git"
},
"keywords": ["actions", "node", "setup"],
"prettier": {
"semi": false,
"singleQuote": true,
"trailingComma": "all"
},
"author": "Sebastian Weigand",
"license": "Apache-2.0",
"dependencies": {
"@actions/core": "^1.11.1",
"@actions/exec": "^1.1.1",
"@actions/io": "^1.1.3",
"temp": "^0.9.4"
},
"devDependencies": {
"@biomejs/biome": "^1.9.4",
"@types/jest": "^29.5.13",
"@types/node": "^22.7.7",
"@types/temp": "^0.9.4",
"@vercel/ncc": "^0.38.2",
"jest": "^29.7.0",
"jest-circus": "^29.7.0",
"npm-check-updates": "^17.1.4",
"ts-jest": "^29.2.5",
"typescript": "^5.6.3"
}
}