ngx-translate-extract/package.json

66 lines
1.5 KiB
JSON

{
"name": "@biesbjerg/ng2-translate-extract",
"version": "0.2.2",
"description": "Extract strings from projects using ng2-translate",
"main": "dist/index.js",
"typings": "dist/index.d.ts",
"files": [
"bin/",
"dist/"
],
"bin": {
"ng2-translate-extract": "bin/extract.js"
},
"scripts": {
"build": "npm run clean && tsc",
"watch": "npm run clean && tsc --watch",
"clean": "rm -rf ./dist",
"lint": "tslint --force './src/**/*.ts'",
"test": "mocha -r ts-node/register tests/**/*.spec.ts"
},
"repository": {
"type": "git",
"url": "https://github.com/biesbjerg/ng2-translate-extract.git"
},
"keywords": [
"angular2",
"ionic",
"ng2-translate",
"extract",
"translate",
"i18n",
"gettext"
],
"author": "Kim Biesbjerg <kim@biesbjerg.com>",
"license": "MIT",
"bugs": {
"url": "https://github.com/biesbjerg/ng2-translate-extract/issues"
},
"homepage": "https://github.com/biesbjerg/ng2-translate-extract",
"engines": {
"node": ">=6.9.0"
},
"config": {},
"devDependencies": {
"@types/chai": "^3.4.34",
"@types/cheerio": "^0.17.31",
"@types/glob": "^5.0.30",
"@types/lodash": "^4.14.41",
"@types/mocha": "^2.2.33",
"chai": "^3.5.0",
"mocha": "^3.2.0",
"ts-node": "^1.7.0",
"tslint": "^4.0.2",
"tslint-eslint-rules": "^3.1.0",
"typescript": "^2.0.10"
},
"dependencies": {
"cheerio": "~0.22.0",
"cli": "^1.0.1",
"fs": "0.0.1-security",
"glob": "^7.1.1",
"lodash": "^4.17.2",
"path": "^0.12.7"
}
}