-
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
35 lines (35 loc) · 1.26 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
{
"name": "setup-wptl-action",
"version": "2.1.3",
"description": "Set up WordPress Test Library",
"scripts": {
"build": "tsc",
"lint": "eslint .",
"lint:fix": "eslint . --fix",
"package": "ncc build -o dist/setup --minify --transpile-only src/main.ts && ncc build -o dist/post --minify --transpile-only src/post.ts",
"test": "node --require=ts-node/register/transpile-only --test --test-reporter=node-reporter-gha --test-reporter-destination=stdout --test-reporter=spec --test-reporter-destination=stdout test/*.spec.ts",
"all": "npm run build && npm run lint:fix && npm run package && npm test"
},
"keywords": [],
"author": "Volodymyr Kolesnykov <[email protected]> (https://wildwolf.name/)",
"license": "MIT",
"devDependencies": {
"@actions/cache": "^4.0.0",
"@actions/core": "^1.10.1",
"@actions/http-client": "^2.2.3",
"@actions/io": "^1.1.3",
"@actions/tool-cache": "^2.0.1",
"@myrotvorets/eslint-config-myrotvorets-ts": "^3.0.0",
"@taiyosen/easy-svn": "^1.0.29",
"@types/node": ">=22",
"@types/semver": "^7.5.8",
"@vercel/ncc": "^0.38.1",
"node-reporter-gha": "^2.0.4",
"semver": "^7.6.3",
"ts-node": "^10.9.2",
"typescript": "^5.5.4"
},
"engines": {
"node": "20"
}
}