ngx-translate-extract/package.json
2017-01-13 09:34:34 +01:00

67 lines
1.5 KiB
JSON

{
"name": "@biesbjerg/ng2-translate-extract",
"version": "0.5.1",
"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",
"ionic2",
"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": ">=4.3.2"
},
"config": {},
"devDependencies": {
"@types/chai": "3.4.34",
"@types/cheerio": "0.17.31",
"@types/glob": "5.0.30",
"@types/mocha": "2.2.34",
"chai": "3.5.0",
"mocha": "3.2.0",
"ts-node": "1.7.2",
"tslint": "4.1.1",
"tslint-eslint-rules": "3.2.0",
"typescript": "2.0.10"
},
"dependencies": {
"cheerio": "0.22.0",
"cli": "1.0.1",
"fs": "0.0.1-security",
"gettext-parser": "1.2.1",
"glob": "7.1.1",
"path": "0.12.7",
"flat": "2.0.1"
}
}