-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
70 lines (70 loc) · 2.3 KB
/
package.json
File metadata and controls
70 lines (70 loc) · 2.3 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
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
{
"name": "@exodus/lerna-coverage-report-action",
"private": true,
"repository": {
"type": "git",
"url": "https://github.com/ExodusMovement/lerna-coverage-report-action.git"
},
"license": "UNLICENSED",
"description": "Coverage report action for lerna + nx monorepos",
"main": "lib/index.js",
"files": [
"dist",
"CHANGELOG.md",
"README.md"
],
"packageManager": "yarn@3.2.3",
"scripts": {
"prepare": "husky install",
"test": "jest .",
"lint": "yarn lint:actions && yarn lint:cli",
"lint:actions": "eslint src",
"lint:cli": "eslint cli -c cli/.eslintrc.js",
"lint:fix": "yarn lint:actions --fix && yarn lint:cli --fix",
"format": "prettier --write \"**/*.{json,md,yaml}\"",
"format:check": "prettier --check \"**/*.{json,md,yaml}\"",
"build": "yarn run build:version && yarn run build:publish && yarn build:version-dispatch",
"build:version": "ncc build src/version.ts --source-map -o dist/version",
"build:version-dispatch": "ncc build src/version-dispatch.ts --source-map -o dist/version-dispatch",
"build:publish": "ncc build src/publish.ts --source-map -o dist/publish"
},
"devDependencies": {
"@exodus/eslint-config": "^5.22.0",
"@exodus/prettier": "^1.0.0",
"@exodus/test": "^1.0.0-rc.56",
"@graphql-eslint/eslint-plugin": "^3.20.1",
"@octokit/plugin-rest-endpoint-methods": "^6.7.0",
"@types/jest": "^27.4.1",
"@types/jest-when": "^3.5.2",
"@types/node": "^20.19.26",
"@typescript-eslint/eslint-plugin": "^5.21.0",
"@typescript-eslint/parser": "^5.21.0",
"@vercel/ncc": "^0.38.1",
"eslint": "^8.56.0",
"eslint-import-resolver-typescript": "^2.7.1",
"graphql": "^16.8.1",
"husky": "^8.0.3",
"jest": "^29.2.1",
"jest-extended": "^3.0.2",
"jest-when": "^3.5.2",
"memfs": "^3.4.7",
"prettier": "^3.2.4",
"ts-jest": "^29.0.3",
"ts-node": "^10.9.1",
"typescript": "^4.7.4"
},
"prettier": "@exodus/prettier",
"dependencies": {
"@actions/cache": "^3.1.1",
"@actions/core": "^1.10.1",
"@actions/github": "^6.0.0",
"@exodus/lerna-utils": "^1.5.0",
"conventional-changelog-conventionalcommits": "^5.0.0",
"conventional-changelog-core": "^4.2.4",
"get-stream": "^6.0.1",
"p-retry": "^4.6.2"
},
"resolutions": {
"xml2js": "^0.5.0"
}
}