-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
50 lines (50 loc) · 1.44 KB
/
package.json
File metadata and controls
50 lines (50 loc) · 1.44 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
45
46
47
48
49
50
{
"name": "weblate-action",
"version": "1.51.0",
"description": "",
"main": "dist/index.js",
"scripts": {
"build": "npm run lint && esbuild src/index.ts --bundle --platform=node --target=node20 --outfile=dist/index.js",
"lint": "eslint . --ext .ts",
"lint:fix": "eslint . --ext .ts --fix",
"test": "jest",
"test:watch": "jest --watch",
"test:coverage": "jest --coverage"
},
"repository": {
"type": "git",
"url": "git+https://github.com/dgaponov/weblate-action.git"
},
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/dgaponov/weblate-action/issues"
},
"homepage": "https://github.com/dgaponov/weblate-action#readme",
"dependencies": {
"@actions/core": "^1.10.1",
"@actions/github": "^6.0.0",
"@actions/io": "^1.1.3",
"axios": "^1.6.0",
"glob": "^13.0.2",
"lodash": "^4.17.21"
},
"devDependencies": {
"@gravity-ui/eslint-config": "^3.1.1",
"@gravity-ui/tsconfig": "^1.0.0",
"@types/jest": "^30.0.0",
"@types/lodash": "^4.14.201",
"@types/node": "^20.9.0",
"@typescript-eslint/eslint-plugin": "^6.10.0",
"@typescript-eslint/parser": "^6.10.0",
"esbuild": "^0.19.5",
"eslint": "^8.53.0",
"eslint-config-prettier": "^9.0.0",
"eslint-plugin-github": "^4.10.1",
"eslint-plugin-import": "^2.29.0",
"eslint-plugin-prettier": "^5.0.1",
"jest": "^30.2.0",
"ts-jest": "^29.4.6",
"typescript": "^5.2.2"
}
}