-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
69 lines (69 loc) · 1.91 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
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
{
"name": "@rotki/action-sqldiff",
"version": "1.1.1",
"private": true,
"packageManager": "[email protected]",
"description": "GitHub Actions to add SQLDiffs in pull requests",
"keywords": [
"actions",
"node",
"setup"
],
"license": "AGPL-3.0",
"homepage": "https://github.com/rotki/action-sqldiff",
"bugs": {
"url": "https://github.com/rotki/action-sqldiff/issues"
},
"repository": {
"type": "git",
"url": "git+https://github.com/rotki/action-sqldiff"
},
"author": "Rotki Solutions GmbH",
"exports": {
".": "./dist/index.js"
},
"scripts": {
"bundle": "pnpm run package",
"coverage": "make-coverage-badge --output-path ./badges/coverage.svg",
"lint": "eslint .",
"lint:fix": "eslint . --fix",
"package": "ncc build src/index.ts -o dist --source-map --license licenses.txt",
"package:watch": "pnpm run package -- --watch",
"preinstall": "npx only-allow pnpm",
"test": "vitest run --coverage",
"all": "pnpm run lint && pnpm run test && pnpm run coverage && pnpm run package",
"prepare": "husky",
"release": "bumpp --no-push"
},
"dependencies": {
"@actions/core": "1.11.1",
"@actions/github": "6.0.0",
"micromatch": "4.0.8",
"semver": "7.6.3"
},
"devDependencies": {
"@commitlint/cli": "19.6.0",
"@commitlint/config-conventional": "19.6.0",
"@jest/globals": "29.7.0",
"@octokit/types": "13.6.2",
"@octokit/webhooks-types": "7.6.1",
"@rotki/eslint-config": "2.9.1",
"@types/micromatch": "4.0.9",
"@types/node": "20.17.10",
"@types/semver": "7.5.8",
"@vercel/ncc": "0.38.3",
"@vitest/coverage-v8": "2.1.8",
"bumpp": "9.9.1",
"eslint": "9.16.0",
"eslint-plugin-github": "5.1.4",
"husky": "9.1.7",
"lint-staged": "15.2.11",
"make-coverage-badge": "1.2.0",
"typescript": "5.7.2",
"vitest": "2.1.8"
},
"engines": {
"node": ">=20",
"pnpm": ">=9 <10"
}
}