UNPKG

polyglot-cli

Version:
96 lines (95 loc) 2.33 kB
{ "name": "polyglot-cli", "version": "2.3.0", "description": "Infinum Polyglot CLI", "main": "dist/index.js", "scripts": { "lint": "eslint 'src/**/*.ts'", "test": "jest --coverage", "watch": "jest --watch --coverage", "publish": "changeset publish", "precommit": "npm run lint && npm test", "prepublishOnly": "npm run build", "build": "tsup src/index.ts --format cjs,esm --clean --legacy-output", "prepare": "husky install" }, "bin": { "polyglot": "./dist/index.js" }, "keywords": [ "i18n", "infinum", "polyglot", "cli" ], "author": "Infinum <javascript.team@infinum.co>", "license": "UNLICENCED", "dependencies": { "@datx/core": "^3.0.0", "@datx/jsonapi": "^3.0.0", "colors": "^1.4.0", "commander": "^5.0.0", "fs-extra": "~11.1.1", "inquirer": "~8.2.5", "lodash": "^4.17.20", "node-fetch": "^2.6.1", "progress": "^2.0.3" }, "devDependencies": { "@changesets/cli": "~2.26.1", "@commitlint/cli": "~17.6.3", "@commitlint/config-conventional": "~17.6.3", "@infinumjs/eslint-config-core-ts": "~2.2.0", "@swc/core": "~1.3.59", "@types/commander": "^2.12.2", "@types/fs-extra": "~11.0.1", "@types/inquirer": "^6.5.0", "@types/jest": "~29.5.1", "@types/lodash": "^4.14.149", "@types/mock-fs": "~4.13.1", "@types/node": "^13.11.1", "@types/node-fetch": "^2.5.6", "@types/progress": "^2.0.3", "eslint": "~7.32.0", "husky": "^8.0.0", "jest": "~29.5.0", "memory-fs": "^0.5.0", "mock-fs": "~5.2.0", "nodemon": "^2.0.3", "ts-jest": "~29.1.0", "tsup": "~6.7.0", "typescript": "~5.0.4" }, "directories": { "test": "tests" }, "repository": { "type": "git", "url": "git+https://github.com/infinum/js-polyglot-cli.git" }, "homepage": "https://github.com/infinum/js-polyglot-cli#readme", "jest": { "clearMocks": true, "coveragePathIgnorePatterns": [ "/tests/", "/node_modules/" ], "moduleFileExtensions": [ "ts", "js" ], "testRegex": "tests/(.*).ts$", "transform": { "^.+\\.ts$": [ "ts-jest", { "diagnostics": { "warnOnly": true } } ] }, "preset": "ts-jest", "testMatch": null } }