package.json 1.7 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162
  1. {
  2. "name": "@lokalise/node-api",
  3. "version": "8.5.1",
  4. "description": "Official Lokalise API 2.0 Node.js client",
  5. "license": "BSD-3-Clause",
  6. "repository": {
  7. "type": "git",
  8. "url": "git+https://github.com/lokalise/node-lokalise-api.git"
  9. },
  10. "keywords": [
  11. "api",
  12. "node",
  13. "typescript",
  14. "lokalise",
  15. "client",
  16. "client library"
  17. ],
  18. "scripts": {
  19. "build": "tsc",
  20. "test": "tsc && nyc --reporter=lcov ts-mocha -p tsconfig.json --r source-map-support/register --type-check test/**/*.spec.ts --timeout 10000"
  21. },
  22. "devDependencies": {
  23. "@istanbuljs/nyc-config-typescript": "^1.0.1",
  24. "@types/chai": "^4.2.22",
  25. "@types/mocha": "^10.0.0",
  26. "@types/node": "^20.2.3",
  27. "@typescript-eslint/eslint-plugin": "^5.4.0",
  28. "@typescript-eslint/parser": "^5.4.0",
  29. "acorn": "^8.6.0",
  30. "chai": "^4.2.0",
  31. "dotenv": "^16.0.0",
  32. "eslint": "^8.33.0",
  33. "eslint-config-prettier": "^8.0.0",
  34. "eslint-plugin-node": "^11.1.0",
  35. "eslint-plugin-prettier": "^4.0.0",
  36. "lodash": "^4.17.20",
  37. "mocha": "^10.0.0",
  38. "mocha-cassettes": "1.2.6",
  39. "nyc": "^15.1",
  40. "prettier": "^2.4.1",
  41. "source-map-support": "^0.5.21",
  42. "ts-mocha": "^10.0.0",
  43. "typescript": "^5.0.0"
  44. },
  45. "dependencies": {
  46. "got": "^11.8.3"
  47. },
  48. "bugs": {
  49. "url": "https://github.com/lokalise/node-lokalise-api/issues"
  50. },
  51. "homepage": "https://lokalise.github.io/node-lokalise-api",
  52. "main": "./index.js",
  53. "typings": "./dist/main.d.ts",
  54. "directories": {
  55. "lib": "./src",
  56. "test": "./test"
  57. },
  58. "author": "Lokalise group, Ilya Krukowski",
  59. "engines": {
  60. "node": ">=10"
  61. }
  62. }