-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
41 lines (41 loc) · 1.07 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
{
"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.10.1",
"@actions/tool-cache": "^2.0.1"
},
"devDependencies": {
"husky": "^8.0.0",
"@types/node": "^20.14.2",
"@typescript-eslint/parser": "^6.0.0",
"@vercel/ncc": "^0.38.1",
"eslint": "^8.39.0",
"eslint-plugin-github": "^5.0.1",
"eslint-plugin-jest": "^27.2.1",
"jest": "^29.7.0",
"js-yaml": "^4.1.0",
"prettier": "^3.3.0",
"ts-jest": "^29.1.4",
"typescript": "^5.4.5"
}
}