-
Notifications
You must be signed in to change notification settings - Fork 55
/
package.json
80 lines (80 loc) · 2.23 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
71
72
73
74
75
76
77
78
79
80
{
"name": "@crowdin/crowdin-api-client",
"version": "1.39.1",
"description": "JavaScript library for Crowdin API",
"main": "out/index.js",
"types": "out/index.d.ts",
"repository": {
"type": "git",
"url": "git+https://github.com/crowdin/crowdin-api-client-js.git"
},
"files": [
"out/**/*"
],
"scripts": {
"prepare": "husky install",
"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",
"generate-docs": "typedoc src/index.ts --options .docs-config/typedoc.json"
},
"keywords": [
"Crowdin",
"API",
"client",
"JavaScript",
"TypeScript",
"localization",
"translation",
"i18n",
"l10n",
"crowdin-api-client",
"crowdin-api",
"crowdin-client",
"crowdin-js",
"crowdin-js-client"
],
"license": "MIT",
"dependencies": {
"axios": "^1"
},
"devDependencies": {
"@types/jest": "^27.0.0",
"@types/nock": "^10.0.3",
"@types/node": "^12.0.10",
"@typescript-eslint/eslint-plugin": "^2.3.1",
"@typescript-eslint/parser": "^2.3.1",
"eslint": "^6.4.0",
"eslint-config-prettier": "^6.3.0",
"eslint-plugin-prettier": "^3.1.1",
"husky": "^7.0.0",
"jest": "^27.0.0",
"jest-circus": "^27.0.0",
"jest-junit": "^15.0.0",
"lint-staged": ">=8",
"nock": "^10.0.6",
"prettier": "^1.18.2",
"ts-jest": "^27.0.0",
"typedoc": "^0.26.2",
"typescript": "^4.1.2"
},
"engines": {
"node": ">=12.9.0"
},
"lint-staged": {
"*.js": [
"eslint --fix",
"git add"
]
},
"bugs": {
"url": "https://github.com/crowdin/crowdin-api-client-js/issues"
},
"homepage": "https://github.com/crowdin/crowdin-api-client-js#readme",
"directories": {
"test": "tests"
}
}