forked from conda-incubator/setup-miniconda
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
65 lines (65 loc) · 2.02 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
65
{
"name": "action-setup-conda",
"version": "2.1.0",
"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 ."
},
"repository": {
"type": "git",
"url": "git+https://github.com/goanpeca/action-setup-conda.git"
},
"keywords": [
"action",
"conda",
"environment",
"github",
"miniconda",
"python",
"starter"
],
"author": "Gonzalo Peña-Castellanos",
"license": "MIT",
"bugs": {
"url": "https://github.com/goanpeca/action-setup-conda"
},
"homepage": "https://github.com/goanpeca/action-setup-conda#readme",
"dependencies": {
"@actions/core": "^1.2.6",
"@actions/exec": "^1.0.2",
"@actions/io": "^1.0.1",
"@actions/tool-cache": "^1.1.2",
"get-hrefs": "^4.0.0",
"js-yaml": "^3.13.1"
},
"devDependencies": {
"@types/js-yaml": "^3.12.4",
"@types/node": "^12.0.4",
"@typescript-eslint/eslint-plugin": "^2.27.0",
"@typescript-eslint/parser": "^2.27.0",
"@zeit/ncc": "^0.22.3",
"dot-prop": ">=4.2.1",
"eslint": "^6.8.0",
"eslint-config-prettier": "^6.7.0",
"eslint-plugin-prettier": "^3.1.1",
"husky": "^3.1.0",
"lerna": "^3.19.0",
"lint-staged": "^9.5.0",
"lodash": ">=4.17.19",
"prettier": "^2.1.2",
"shell-quote": "^1.7.2",
"typescript": "^3.7.2"
},
"husky": {
"hooks": {
"pre-commit": "npm run format && npm run build"
}
}
}