forked from s-weigand/setup-conda
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
53 lines (53 loc) · 1.29 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
{
"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": "prettier --write **/*.ts",
"format-check": "prettier --check **/*.ts",
"lint": "tslint src/*",
"test": "jest"
},
"repository": {
"type": "git",
"url": "git+https://github.com/s-weigand/setup-conda.git"
},
"keywords": [
"actions",
"node",
"setup"
],
"prettier": {
"semi": false,
"singleQuote": true
},
"author": "Sebastian Weigand",
"license": "Apache-2.0",
"dependencies": {
"@actions/core": "^1.10.0",
"@actions/exec": "^1.1.1",
"@actions/io": "^1.1.2",
"@actions/tool-cache": "^2.0.1",
"temp": "^0.9.4"
},
"devDependencies": {
"@types/jest": "^28.1.7",
"@types/node": "^16.18.0",
"@types/temp": "^0.9.1",
"@zeit/ncc": "^0.22.3",
"jest": "^28.1.3",
"jest-circus": "^29.1.2",
"prettier": "^2.7.1",
"ts-jest": "^28.0.8",
"tslint": "^6.1.3",
"tslint-config-prettier": "^1.18.0",
"tslint-config-standard": "^9.0.0",
"typescript": "^4.8.4"
}
}