-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
41 lines (41 loc) · 1.06 KB
/
package.json
File metadata and controls
41 lines (41 loc) · 1.06 KB
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-op",
"version": "0.0.1",
"description": "",
"main": "lib/main.js",
"scripts": {
"prepare": "husky install",
"build": "tsc",
"format": "prettier --write '**/*.ts'",
"format-check": "prettier --check '**/*.ts'",
"lint": "eslint src/**/*.ts",
"package": "ncc build --source-map --license licenses.txt",
"test": "jest",
"all": "npm run build && npm run package"
},
"keywords": [],
"homepage": "https://github.com/settlemint/setup-op",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/settlemint/setup-op.git"
},
"dependencies": {
"@actions/core": "1.11.1",
"@actions/tool-cache": "2.0.2"
},
"devDependencies": {
"husky": "9.1.7",
"@types/node": "22.19.17",
"@typescript-eslint/parser": "8.58.2",
"@vercel/ncc": "0.38.4",
"eslint": "9.39.4",
"eslint-plugin-github": "6.0.0",
"eslint-plugin-jest": "28.14.0",
"jest": "29.7.0",
"js-yaml": "4.1.1",
"prettier": "3.8.3",
"ts-jest": "29.4.9",
"typescript": "5.9.3"
}
}