-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathpackage.json
62 lines (62 loc) · 1.86 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
{
"name": "wordpress-version-checker",
"version": "2.2.2",
"description": "A GitHub app to automatically create issues when a plugin \"tested up to\" version doesn't match the latest WordPress version.",
"keywords": [
"wordpress",
"plugin",
"github app",
"automation",
"version check"
],
"homepage": "https://github.com/skaut/wordpress-version-checker#readme",
"bugs": {
"url": "https://github.com/skaut/wordpress-version-checker/issues"
},
"license": "MIT",
"author": "Marek Dědič",
"repository": {
"type": "git",
"url": "git+https://github.com/skaut/wordpress-version-checker.git"
},
"type": "module",
"dependencies": {
"@actions/core": "^1.11.1",
"@actions/github": "^6.0.0",
"compare-versions": "^6.1.1",
"ts-custom-error": "^3.3.1"
},
"devDependencies": {
"@eslint-community/eslint-plugin-eslint-comments": "^4.4.1",
"@eslint/js": "^9.19.0",
"@types/node": "^22.10.10",
"@vitest/coverage-v8": "^3.0.4",
"@vitest/eslint-plugin": "^1.1.25",
"eslint": "^9.18.0",
"eslint-config-prettier": "^10.0.1",
"eslint-plugin-perfectionist": "^4.7.0",
"eslint-plugin-prefer-arrow-functions": "^3.6.2",
"eslint-plugin-prettier": "^5.2.1",
"mocked-env": "^1.3.5",
"nock": "^14.0.0",
"node-fetch": "^3.3.2",
"npm-run-all": "^4.1.5",
"prettier": "^3.4.2",
"rimraf": "^6.0.1",
"typescript": "^5.7.3",
"typescript-eslint": "^8.20.0",
"vite": "^6.0.11",
"vitest": "^3.0.4"
},
"main": "dist/index.js",
"scripts": {
"clean": "rimraf dist/*",
"prebuild": "npm run clean",
"build": "vite build",
"lint:eslint": "eslint \"src/**/*.ts\" \"tests/**/*.ts\" \"*.config.{js,ts}\"",
"lint:typecheck": "tsc --noEmit",
"lint": "run-p -c --aggregate-output lint:*",
"test": "vitest",
"test-coverage": "vitest run --coverage"
}
}