-
-
Notifications
You must be signed in to change notification settings - Fork 11
/
package.json
69 lines (69 loc) · 1.81 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
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
{
"name": "@ievangelist/resource-translator",
"version": "v2.2.0",
"preview": false,
"keywords": [
"github",
"actions",
"resource",
"localization",
"azure",
"translator"
],
"description": "A GitHub action that uses Azure Cognitive Services translator to generate .resx resource files",
"main": "dist/resource-translator/index.js",
"directories": {
"lib": "lib"
},
"files": [
"lib",
"!.DS_Store"
],
"publishConfig": {
"access": "public"
},
"scripts": {
"build": "tsc && ncc build -o dist/resource-translator src/index.ts",
"test": "tsc --noEmit && jest --coverage --verbose",
"format": "prettier --write src/**/*.ts",
"format-check": "prettier --check src/**/*.ts",
"lint": "eslint src/**/*.ts"
},
"repository": {
"type": "git",
"url": "git+https://github.com/IEvangelist/resource-translator.git"
},
"author": "IEvangelist",
"license": "MIT",
"bugs": {
"url": "https://github.com/IEvangelist/resource-translator/issues"
},
"homepage": "https://github.com/IEvangelist/resource-translator#readme",
"dependencies": {
"@actions/cache": "^3.2.1",
"@actions/core": "^1.10.0",
"@actions/github": "^5.1.1",
"@actions/glob": "^0.4.0",
"@actions/io": "^1.1.3",
"@actions/tool-cache": "^2.0.1",
"axios": "^1.6.0",
"uuidv4": "^6.2.13",
"xml2js": "^0.6.0"
},
"devDependencies": {
"@types/axios": "^0.14.0",
"@types/jest": "^29.5.2",
"@types/node": "^20.3.3",
"@types/xml2js": "^0.4.11",
"@typescript-eslint/parser": "^5.61.0",
"@vercel/ncc": "^0.36.1",
"concurrently": "^8.2.0",
"eslint": "^8.44.0",
"eslint-plugin-github": "^4.8.0",
"jest": "^29.6.0",
"jest-circus": "^29.6.0",
"prettier": "^3.0.0",
"ts-jest": "^29.1.1",
"typescript": "^5.1.6"
}
}