forked from biesbjerg/ngx-translate-extract
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
65 lines (65 loc) · 1.51 KB
/
package.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
{
"name": "@biesbjerg/ng2-translate-extract",
"version": "0.3.5",
"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 <[email protected]>",
"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"
}
}