-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
37 lines (37 loc) · 1.15 KB
/
package.json
File metadata and controls
37 lines (37 loc) · 1.15 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
{
"name": "@exodus/lerna-package-name-action",
"main": "dist/index.js",
"private": true,
"scripts": {
"build": "ncc build src/main.ts --minify",
"lint": "eslint .",
"lint:fix": "yarn lint --fix",
"test": "jest",
"format": "prettier \"**/*.{js,json,md,ts,yml}\" --ignore-path .eslintignore --write",
"format:check": "prettier --check \"**/*.{js,json,md,ts,yml}\" --ignore-path .eslintignore --loglevel warn"
},
"dependencies": {
"@actions/core": "1.10.0",
"@actions/github": "5.1.1",
"@exodus/lerna-utils": "^1.5.0"
},
"devDependencies": {
"@exodus/eslint-config": "^3.0.0",
"@exodus/prettier": "^0.1.5",
"@octokit/plugin-rest-endpoint-methods": "^6.7.0",
"@types/jest": "^29.2.3",
"@types/jest-when": "^3.5.2",
"@typescript-eslint/eslint-plugin": "^5.21.0",
"@typescript-eslint/parser": "^5.21.0",
"@vercel/ncc": "^0.34.0",
"eslint": "^7.32.0",
"eslint-import-resolver-typescript": "^2.7.1",
"jest": "^29.3.1",
"jest-when": "^3.5.2",
"memfs": "^3.4.12",
"prettier": "^2.8.0",
"ts-jest": "^29.0.3",
"typescript": "4.5.5"
},
"prettier": "@exodus/prettier"
}