-
Notifications
You must be signed in to change notification settings - Fork 11
/
package.json
68 lines (68 loc) · 1.67 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
{
"name": "@crowdin/ota-client",
"version": "2.0.0",
"description": "JavaScript library for Crowdin OTA Content Delivery",
"main": "out/index.js",
"types": "out/index.d.ts",
"repository": {
"type": "git",
"url": "https://github.com/crowdin/ota-client-js.git"
},
"files": [
"out/**/*"
],
"scripts": {
"test": "jest",
"build": "tsc -p ./",
"watch": "tsc -watch -p ./",
"lint": "eslint --fix \"{src,tests}/**/*.{js,ts}\"",
"lint-ci": "eslint \"{src,tests}/**/*.{js,ts}\"",
"test-coverage": "jest --ci --reporters=jest-junit --reporters=default --coverage --coverageReporters=cobertura --coverageReporters=html",
"prepare": "husky install"
},
"keywords": [
"Crowdin",
"Over-The-Air",
"OTA",
"Content Delivery",
"CDN",
"instant",
"translations",
"internationalization",
"javascript",
"React Native",
"i18next",
"api",
"web",
"i18n",
"l10n"
],
"license": "MIT",
"devDependencies": {
"@types/jest": "^29.5.0",
"@types/node": "^18.19.49",
"@typescript-eslint/eslint-plugin": "^5.57.0",
"@typescript-eslint/parser": "^5.57.0",
"eslint": "^8.37.0",
"eslint-config-prettier": "^8.8.0",
"eslint-plugin-prettier": "^4.2.1",
"husky": "^8.0.3",
"jest": "^29.5.0",
"jest-circus": "^29.5.0",
"jest-junit": "^15.0.0",
"lint-staged": ">=13",
"prettier": "^2.8.7",
"ts-jest": "^29.1.0",
"typescript": "^5.0.3"
},
"bugs": {
"url": "https://github.com/crowdin/ota-client-js/issues"
},
"homepage": "https://crowdin.github.io/ota-client-js/",
"directories": {
"test": "tests"
},
"engines": {
"node": ">=18.0.0"
}
}