2016-12-03 17:09:39 +03:00
|
|
|
{
|
2017-03-07 17:38:45 +03:00
|
|
|
"name": "@biesbjerg/ngx-translate-extract",
|
2017-11-08 16:02:41 +03:00
|
|
|
"version": "2.3.4",
|
2017-03-07 17:38:45 +03:00
|
|
|
"description": "Extract strings from projects using ngx-translate",
|
2016-12-03 17:09:39 +03:00
|
|
|
"main": "dist/index.js",
|
|
|
|
"typings": "dist/index.d.ts",
|
2016-12-05 00:54:35 +03:00
|
|
|
"files": [
|
|
|
|
"bin/",
|
|
|
|
"dist/"
|
|
|
|
],
|
|
|
|
"bin": {
|
2017-03-20 17:29:41 +03:00
|
|
|
"ngx-translate-extract": "bin/cli.js"
|
2016-12-05 00:54:35 +03:00
|
|
|
},
|
2016-12-03 17:09:39 +03:00
|
|
|
"scripts": {
|
2016-12-05 00:54:35 +03:00
|
|
|
"build": "npm run clean && tsc",
|
|
|
|
"watch": "npm run clean && tsc --watch",
|
2016-12-07 08:03:23 +03:00
|
|
|
"clean": "rm -rf ./dist",
|
2016-12-08 15:53:13 +03:00
|
|
|
"lint": "tslint --force './src/**/*.ts'",
|
|
|
|
"test": "mocha -r ts-node/register tests/**/*.spec.ts"
|
2016-12-03 17:09:39 +03:00
|
|
|
},
|
|
|
|
"repository": {
|
|
|
|
"type": "git",
|
2017-03-07 17:38:45 +03:00
|
|
|
"url": "https://github.com/biesbjerg/ngx-translate-extract.git"
|
2016-12-03 17:09:39 +03:00
|
|
|
},
|
2016-12-07 04:21:36 +03:00
|
|
|
"keywords": [
|
2017-03-07 17:50:14 +03:00
|
|
|
"angular",
|
2016-12-07 04:21:36 +03:00
|
|
|
"ionic",
|
2017-03-07 17:38:45 +03:00
|
|
|
"ngx-translate",
|
2016-12-07 04:21:36 +03:00
|
|
|
"extract",
|
2017-03-07 17:38:45 +03:00
|
|
|
"extractor",
|
2016-12-07 04:21:36 +03:00
|
|
|
"translate",
|
2017-03-07 17:50:14 +03:00
|
|
|
"translation",
|
2016-12-07 04:21:36 +03:00
|
|
|
"i18n",
|
|
|
|
"gettext"
|
|
|
|
],
|
2016-12-03 17:09:39 +03:00
|
|
|
"author": "Kim Biesbjerg <kim@biesbjerg.com>",
|
|
|
|
"license": "MIT",
|
|
|
|
"bugs": {
|
2017-03-07 17:38:45 +03:00
|
|
|
"url": "https://github.com/biesbjerg/ngx-translate-extract/issues"
|
2016-12-03 17:09:39 +03:00
|
|
|
},
|
2017-03-07 17:38:45 +03:00
|
|
|
"homepage": "https://github.com/biesbjerg/ngx-translate-extract",
|
2016-12-03 17:09:39 +03:00
|
|
|
"engines": {
|
2016-12-20 17:17:37 +03:00
|
|
|
"node": ">=4.3.2"
|
2016-12-03 17:09:39 +03:00
|
|
|
},
|
2016-12-05 00:54:35 +03:00
|
|
|
"config": {},
|
2016-12-03 17:09:39 +03:00
|
|
|
"devDependencies": {
|
2019-06-11 13:50:08 +03:00
|
|
|
"@types/chai": "4.1.7",
|
|
|
|
"@types/cheerio": "0.22.11",
|
2017-03-20 17:29:41 +03:00
|
|
|
"@types/flat": "0.0.28",
|
2019-06-11 13:50:08 +03:00
|
|
|
"@types/glob": "7.1.1",
|
|
|
|
"@types/mkdirp": "0.5.2",
|
|
|
|
"@types/mocha": "5.2.7",
|
|
|
|
"@types/yargs": "13.0.0",
|
|
|
|
"chai": "4.2.0",
|
|
|
|
"mocha": "6.1.4",
|
|
|
|
"ts-node": "8.2.0",
|
|
|
|
"tslint": "5.17.0",
|
|
|
|
"tslint-eslint-rules": "5.4.0"
|
2016-12-07 08:03:23 +03:00
|
|
|
},
|
|
|
|
"dependencies": {
|
2019-06-11 13:50:08 +03:00
|
|
|
"cheerio": "1.0.0-rc.3",
|
|
|
|
"colorette": "^1.0.8",
|
|
|
|
"flat": "4.1.0",
|
2016-12-03 17:09:39 +03:00
|
|
|
"fs": "0.0.1-security",
|
2019-06-11 13:50:08 +03:00
|
|
|
"gettext-parser": "4.0.0",
|
|
|
|
"glob": "7.1.4",
|
2017-03-20 17:29:41 +03:00
|
|
|
"mkdirp": "0.5.1",
|
2019-06-11 13:50:08 +03:00
|
|
|
"path": "0.12.7",
|
|
|
|
"typescript": "3.5.1",
|
|
|
|
"yargs": "13.2.4"
|
2016-12-03 17:09:39 +03:00
|
|
|
}
|
|
|
|
}
|