UNPKG

angular-t9n

Version:

A translation tool for Angular i18n

163 lines (162 loc) 4.75 kB
{ "name": "angular-t9n", "version": "20.0.0", "description": "A translation tool for Angular i18n", "bin": { "ng-t9n": "./bin/cli.js" }, "keywords": [ "angular", "i18n", "xliff", "xlf", "xlf2", "translation", "t9n" ], "scripts": { "prepare": "husky", "ng": "ng", "start": "ng serve", "clean": "rimraf --glob coverage \"{bin,builders,schematics,server}/**/index.{js,d.ts}\"", "build": "yarn -s build:ng && yarn -s build:node", "build:ng": "ng build --configuration production", "build:node": "rollup --config rollup.config.mjs", "format": "prettier --ignore-unknown --write \"**/*\"", "test": "yarn -s test:node", "test:node": "jest", "lint": "ng lint", "xi18n:xlf": "ng extract-i18n -c xlf", "xi18n:xlf2": "ng extract-i18n", "xi18n": "yarn -s xi18n:xlf && yarn -s xi18n:xlf2", "t9n:xlf": "ng run angular-t9n:t9n -c xlf", "t9n:xlf2": "ng run angular-t9n:t9n", "release": "commit-and-tag-version --tag-prefix=\"\"" }, "repository": { "type": "git", "url": "git+https://github.com/kyubisation/angular-t9n.git" }, "license": "Apache-2.0", "bugs": { "url": "https://github.com/kyubisation/angular-t9n/issues" }, "files": [ "bin/*.js", "builders/builders.json", "builders/*/*.{js,json}", "schematics/collection.json", "schematics/*/*.{js,json}", "server/client/*", "server/index.js" ], "dependencies": { "@nestjs/common": "^10.4.15", "@nestjs/core": "^10.4.15", "@nestjs/platform-express": "^10.4.15", "@nestjs/platform-ws": "^10.4.15", "@nestjs/serve-static": "^4.0.2", "@nestjs/websockets": "^10.4.15", "@rollup/plugin-typescript": "^12.1.2", "@xmldom/xmldom": "^0.9.6", "class-transformer": "^0.5.1", "class-validator": "^0.14.1", "js-levenshtein": "^1.1.6", "reflect-metadata": "^0.2.2", "rxjs": "~7.8.1" }, "devDependencies": { "@angular-eslint/builder": "^20.0.0", "@angular-eslint/eslint-plugin": "^20.0.0", "@angular-eslint/eslint-plugin-template": "^20.0.0", "@angular-eslint/schematics": "^20.0.0", "@angular-eslint/template-parser": "^20.0.0", "@angular/animations": "^20.0.3", "@angular/build": "^20.0.2", "@angular/cdk": "^20.0.3", "@angular/cli": "^20.0.2", "@angular/common": "^20.0.3", "@angular/compiler": "^20.0.3", "@angular/compiler-cli": "^20.0.3", "@angular/core": "^20.0.3", "@angular/forms": "^20.0.3", "@angular/language-service": "^20.0.3", "@angular/localize": "^20.0.3", "@angular/material": "^20.0.3", "@angular/platform-browser": "^20.0.3", "@angular/platform-browser-dynamic": "^20.0.3", "@angular/router": "^20.0.3", "@nestjs/schematics": "^10.2.3", "@nestjs/testing": "^10.4.15", "@types/express": "^5.0.0", "@types/jasmine": "~5.1.5", "@types/jest": "^29.5.14", "@types/js-levenshtein": "^1.1.3", "@types/node": "^22.10.2", "@types/ws": "^8.5.13", "@typescript-eslint/eslint-plugin": "^8.33.1", "@typescript-eslint/parser": "^8.33.1", "commit-and-tag-version": "^12.5.0", "eslint": "^9.28.0", "eslint-plugin-import": "^2.31.0", "husky": "^9.1.7", "jasmine-core": "~5.5.0", "jest": "^29.7.0", "karma": "~6.4.4", "karma-chrome-launcher": "~3.2.0", "karma-coverage": "~2.2.1", "karma-jasmine": "~5.1.0", "karma-jasmine-html-reporter": "~2.1.0", "lint-staged": "^15.2.11", "prettier": "^3.4.2", "rimraf": "^6.0.1", "rollup": "^4.28.1", "ts-jest": "^29.2.5", "ts-node": "^10.9.2", "tsconfig-paths": "^4.2.0", "tslib": "^2.8.1", "typescript": "~5.8.3", "xlsx": "^0.18.5", "zone.js": "~0.15.0" }, "schematics": "./schematics/collection.json", "builders": "./builders/builders.json", "ng-add": { "save": "devDependencies" }, "jest": { "transform": { "^.+\\.tsx?$": [ "ts-jest", { "tsconfig": "tsconfig.node.json" } ] }, "preset": "ts-jest", "testEnvironment": "node", "modulePathIgnorePatterns": [ "src" ], "collectCoverage": true, "collectCoverageFrom": [ "**/*.ts", "!**/*.module.ts", "!**/*.d.ts", "!**/index.ts", "!**/*.spec.ts" ], "coverageDirectory": "coverage" }, "prettier": { "singleQuote": true, "endOfLine": "lf", "printWidth": 100 }, "lint-staged": { "*.{js,ts,css,scss,json,md,html}": [ "prettier --write --ignore-unknown" ] }, "packageManager": "yarn@1.22.22+sha512.a6b2f7906b721bba3d67d4aff083df04dad64c399707841b7acf00f6b133b7ac24255f2652fa22ae3534329dc6180534e98d17432037ff6fd140556e2bb3137e" }