-
Notifications
You must be signed in to change notification settings - Fork 70
/
package.json
64 lines (64 loc) · 2 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
62
63
64
{
"name": "setup-miniconda",
"description": "GitHub action for setting up conda from default or custom installers",
"main": "lib/main.js",
"scripts": {
"build": "ncc build -o dist/setup src/setup.ts && ncc build -o dist/delete src/delete.ts",
"format": "npm run prettier:format && npm run eslint:format",
"check": "npm run prettier:check && npm run eslint:check",
"prettier:format": "prettier --list-different --write \"src/**/*.ts\" \"*.{md,json,yml}\" \"{etc,.github}/**/*.{md,json,yml,js}\"",
"prettier:check": "prettier --list-different \"src/**/*.ts\" \"*.{md,json,yml}\" \"{etc,.github}/**/*.{md,json,yml,js}\"",
"eslint:format": "eslint --ext .js,.jsx,.ts,.tsx --fix .",
"eslint:check": "eslint --ext .js,.jsx,.ts,.tsx .",
"prepare": "husky install"
},
"repository": {
"type": "git",
"url": "git+https://github.com/conda-incubator/setup-miniconda.git"
},
"keywords": [
"action",
"conda",
"environment",
"github",
"miniconda",
"miniforge",
"mamba",
"python",
"starter",
"setup"
],
"author": "Gonzalo Peña-Castellanos",
"license": "MIT",
"bugs": {
"url": "https://github.com/conda-incubator/setup-miniconda"
},
"homepage": "https://github.com/conda-incubator/setup-miniconda#conda-incubatorsetup-miniconda",
"dependencies": {
"@actions/core": "^1.11.1",
"@actions/exec": "^1.1.1",
"@actions/io": "^1.1.3",
"@actions/tool-cache": "^2.0.1",
"get-hrefs": "^4.0.0",
"js-yaml": "^4.1.0",
"normalize-url": "^8.0.1",
"semver": "^7.6.3"
},
"devDependencies": {
"@types/js-yaml": "^4.0.9",
"@types/node": "^20.9.4",
"@types/semver": "^7.5.8",
"@typescript-eslint/eslint-plugin": "^6.12.0",
"@typescript-eslint/parser": "^6.12.0",
"@vercel/ncc": "^0.38.1",
"eslint": "^8.54.0",
"husky": "^8.0.3",
"prettier": "^3.1.0",
"typescript": "^5.3.2"
},
"husky": {
"hooks": {
"pre-commit": "npm run format && npm run check && npm run build"
}
}
}