-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
36 lines (36 loc) · 1.3 KB
/
package.json
File metadata and controls
36 lines (36 loc) · 1.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
{
"name": "setup-wptl-action",
"version": "3.0.0",
"description": "Set up WordPress Test Library",
"type": "module",
"scripts": {
"build": "tsc",
"lint": "eslint .",
"lint:fix": "eslint . --fix",
"package": "ncc build -o dist/setup --minify --transpile-only lib/src/main.mjs && ncc build -o dist/post --minify --transpile-only lib/src/post.mjs",
"test": "node --import=./loader.mjs --experimental-test-module-mocks --test --test-reporter=node-reporter-gha --test-reporter-destination=stdout --test-reporter=spec --test-reporter-destination=stdout test/*.spec.mts",
"all": "npm run build && npm run lint:fix && npm run package && npm test"
},
"keywords": [],
"author": "Volodymyr Kolesnykov <volodymyr@wildwolf.name> (https://wildwolf.name/)",
"license": "MIT",
"devDependencies": {
"@actions/cache": "^6.0.0",
"@actions/core": "^3.0.0",
"@actions/http-client": "^4.0.0",
"@actions/io": "^3.0.2",
"@actions/tool-cache": "^4.0.0",
"@myrotvorets/eslint-config-myrotvorets-ts": "^3.0.2",
"@taiyosen/easy-svn": "^1.0.29",
"@types/node": ">=22",
"@types/semver": "^7.7.1",
"@vercel/ncc": "^0.38.4",
"node-reporter-gha": "^2.0.5",
"semver": "^7.7.3",
"ts-node": "^10.9.2",
"typescript": "^5.9.3"
},
"engines": {
"node": "24"
}
}