forked from eclipse-zenoh/ci
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
44 lines (44 loc) · 1.33 KB
/
package.json
File metadata and controls
44 lines (44 loc) · 1.33 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
37
38
39
40
41
42
43
44
{
"name": "@eclipse-zenoh/ci",
"description": "GitHub JavaScript Actions for Eclipse Zenoh CI/CD",
"private": true,
"engines": {
"node": ">=20"
},
"type": "module",
"scripts": {
"format:write": "prettier --write **/*.ts",
"format:check": "prettier --check **/*.ts",
"lint": "npx eslint . -c eslint.config.mjs",
"build": "./build.cjs",
"build:watch": "npm run package -- --watch",
"test": "NODE_OPTIONS=\"$NODE_OPTIONS --experimental-vm-modules\" jest --detectOpenHandles",
"all": "npm run format:write && npm run lint && npm run test && npm run build",
"clean": "rm dist/*"
},
"license": "(Apache-2.0 OR EPL-2.0)",
"dependencies": {
"@actions/artifact": "^2.1.1",
"@actions/cache": "^4.0.0",
"@actions/core": "^1.10.1",
"node-fetch": "^3.3.2"
},
"devDependencies": {
"@eslint/eslintrc": "^3.3.1",
"@eslint/js": "^9.23.0",
"@types/jest": "^29.5.14",
"@types/node": "^20.16.15",
"@types/node-fetch": "^2.6.13",
"@typescript-eslint/eslint-plugin": "^8.27.0",
"@typescript-eslint/parser": "^8.27.0",
"@vercel/ncc": "^0.38.1",
"eslint": "^9.23.0",
"eslint-plugin-prettier": "^5.1.2",
"jest": "^29.7.0",
"prettier": "^3.1.1",
"prettier-eslint": "^16.2.0",
"ts-jest": "^29.2.6",
"tsup": "^8.4.0",
"typescript": "^5.3.3"
}
}