-
Notifications
You must be signed in to change notification settings - Fork 4
/
package.json
38 lines (38 loc) · 1.16 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
{
"name": "@eclipse-zenoh/ci",
"description": "GitHub JavaScript Actions for Eclipse Zenoh CI/CD",
"private": true,
"engines": {
"node": ">=20"
},
"scripts": {
"format:write": "prettier --write **/*.ts",
"format:check": "prettier --check **/*.ts",
"lint": "npx eslint . -c .eslintrc.json",
"build": "./build.js",
"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": "^3.2.4",
"@actions/core": "^1.10.1"
},
"devDependencies": {
"@types/jest": "^29.5.11",
"@types/node": "^20.16.15",
"@typescript-eslint/eslint-plugin": "^6.18.0",
"@typescript-eslint/parser": "^6.18.0",
"@vercel/ncc": "^0.38.1",
"eslint": "^8.56.0",
"eslint-plugin-prettier": "^5.1.2",
"jest": "^29.7.0",
"prettier": "^3.1.1",
"prettier-eslint": "^16.2.0",
"ts-jest": "^29.1.2",
"typescript": "^5.3.3"
}
}