-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
70 lines (70 loc) · 1.64 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
70
{
"name": "azure-translator-code",
"version": "1.1.18",
"description": "Azure Cognitive Services Translator Text API Code for Use with Common Languages",
"author": {
"name": "Gabriel Logan"
},
"main": "./dist/src/index.js",
"types": "./types/src/index.d.ts",
"files": [
"dist",
"types",
"!dist/tests",
"!types/tests"
],
"scripts": {
"test": "jest --verbose",
"test:coverage": "jest --coverage",
"test:watch": "jest --watch",
"test:file": "jest tests/translate",
"test:silent": "jest --watchAll --silent --noStackTrace",
"build:dist": "tsc",
"build:types": "tsc -p tsconfig.types.json",
"build": "yarn build:types && yarn build:dist"
},
"repository": {
"type": "git",
"url": "git+https://github.com/gabriel-logan/Azure-translator-code.git"
},
"keywords": [
"javascript",
"typescript",
"azure translator",
"translator",
"translator code",
"i18n json generator",
"i18n",
"translations",
"azure"
],
"license": "MIT",
"bugs": {
"url": "https://github.com/gabriel-logan/Azure-translator-code/issues"
},
"homepage": "https://github.com/gabriel-logan/Azure-translator-code#readme",
"contributors": [
"Gabriel Logan",
"Breno Andrade"
],
"devDependencies": {
"@types/jest": "^29.5.12",
"@types/node": "^22.5.4",
"@types/uuid": "^10",
"azure-translator-code": "^1.1.6",
"dotenv": "^16.4.5",
"eslint": "^8",
"eslint-config-universe": "^13.0.0",
"jest": "^29.7.0",
"jest-environment-jsdom": "^29.7.0",
"prettier": "^3.3.3",
"ts-jest": "^29.2.5",
"ts-node": "^10.9.2",
"typescript": "^5.5.4"
},
"packageManager": "[email protected]",
"dependencies": {
"axios": "^1.7.7",
"uuid": "^10.0.0"
}
}