-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathpackage.json
59 lines (59 loc) · 1.73 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
{
"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.18.0",
"@types/jest": "^29.5.14",
"@types/node": "^22.10.7",
"@vercel/ncc": "^0.38.3",
"eslint": "^9.18.0",
"eslint-config-prettier": "^10.0.1",
"eslint-plugin-jest": "^28.10.0",
"eslint-plugin-perfectionist": "^4.6.0",
"eslint-plugin-prefer-arrow-functions": "^3.6.2",
"eslint-plugin-prettier": "^5.2.1",
"jest": "^29.7.0",
"mocked-env": "^1.3.5",
"nock": "^13.5.6",
"node-fetch": "^3.3.2",
"prettier": "^3.4.2",
"rimraf": "^6.0.1",
"ts-jest": "^29.2.5",
"typescript": "^5.5.4",
"typescript-eslint": "^8.20.0"
},
"main": "dist/index.js",
"scripts": {
"clean": "rimraf dist/*",
"prebuild": "npm run clean",
"build": "ncc build src/index.ts",
"lint": "eslint \"src/**/*.ts\" \"__tests__/**/*.ts\" \"*.config.{js,ts}\"",
"test": "jest"
}
}