-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
41 lines (41 loc) · 1004 Bytes
/
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": "setup-hdfs",
"version": "0.0.1",
"description": "Setup hdfs action",
"main": "dist/index.js",
"scripts": {
"tsc": "tsc",
"ncc": "ncc build lib/setup-hdfs.js",
"build": "prettier --write **/*.ts && tsc && ncc build lib/setup-hdfs.js",
"format": "prettier --write **/*.ts",
"format-check": "prettier --check **/*.ts",
"test": "jest"
},
"repository": {
"type": "git",
"url": "git+https://github.com/beyondstorage/setup-hdfs.git"
},
"keywords": [
"actions",
"node",
"setup",
"spark"
],
"author": "beyondstorage Contributors",
"license": "Apache 2.0",
"dependencies": {
"@actions/core": "^1.11.1",
"@actions/io": "^1.1.3",
"@actions/tool-cache": "^2.0.1"
},
"devDependencies": {
"@types/jest": "^27.4.1",
"@types/node": "^22.10.2",
"@vercel/ncc": "^0.38.3",
"jest": "^27.5.1",
"jest-circus": "^29.7.0",
"prettier": "^3.4.2",
"ts-jest": "^27.1.4",
"typescript": "^4.9.5"
}
}