ngx-translate-extract/package.json

66 lines
1.5 KiB
JSON
Raw Normal View History

2016-12-03 17:09:39 +03:00
{
2016-12-05 01:18:05 +03:00
"name": "@biesbjerg/ng2-translate-extract",
2016-12-07 14:38:58 +03:00
"version": "0.2.2",
2016-12-05 01:18:05 +03:00
"description": "Extract strings from projects using ng2-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": {
"ng2-translate-extract": "bin/extract.js"
},
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",
"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",
"url": "https://github.com/biesbjerg/ng2-translate-extract.git"
},
2016-12-07 04:21:36 +03:00
"keywords": [
"angular2",
"ionic",
"ng2-translate",
"extract",
"translate",
"i18n",
"gettext"
],
2016-12-03 17:09:39 +03:00
"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": {
2016-12-05 00:54:35 +03:00
"node": ">=6.9.0"
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": {
"@types/chai": "^3.4.34",
2016-12-07 08:03:23 +03:00
"@types/cheerio": "^0.17.31",
2016-12-03 17:09:39 +03:00
"@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",
2016-12-07 08:03:23 +03:00
"tslint": "^4.0.2",
"tslint-eslint-rules": "^3.1.0",
"typescript": "^2.0.10"
},
"dependencies": {
"cheerio": "~0.22.0",
2016-12-05 00:54:35 +03:00
"cli": "^1.0.1",
2016-12-03 17:09:39 +03:00
"fs": "0.0.1-security",
"glob": "^7.1.1",
2016-12-05 00:54:35 +03:00
"lodash": "^4.17.2",
"path": "^0.12.7"
2016-12-03 17:09:39 +03:00
}
}