-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
63 lines (63 loc) · 1.67 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
{
"name": "@ebottacin/ngx-translate-extract-kml",
"version": "1.0.0",
"description": "extract ngx-translate strings from angular app and writes as kml files",
"main": "dist/index.js",
"typings": "dist/index.d.ts",
"files": [
"bin/",
"dist/"
],
"scripts": {
"build": "npm run clean && ./node_modules/typescript/bin/tsc",
"watch": "npm run clean && ./node_modules/typescript/bin/tsc --watch",
"clean": "rm -rf ./dist",
"lint": "tslint --force './src/**/*.ts'",
"link_lib": "npm link @ebottacin/ngx-translate-extract",
"test_run": "./bin/cli.js -i ../ngx-translate-test/src/ -o ../data/ -f custom -k"
},
"repository": {
"type": "git",
"url": "git+https://github.com/ebottacin/ngx-translate-extract-kml.git"
},
"keywords": [
"angular",
"ionic",
"ngx-translate",
"extract",
"extractor",
"translate",
"translation",
"i18n",
"gettext",
"ngx-translate-extract",
"angular",
"ngx-translate"
],
"author": "enrico bottacin",
"license": "MIT",
"bugs": {
"url": "https://github.com/ebottacin/ngx-translate-extract-kml/issues"
},
"homepage": "https://github.com/ebottacin/ngx-translate-extract-kml#readme",
"engines": {
"node": ">=4.3.2"
},
"devDependencies": {
"@types/inversify": "^2.0.33",
"@types/node": "^12.7.0",
"@types/xml-js": "^1.0.0",
"ts-node": "^8.3.0",
"tslint": "^5.18.0",
"tslint-eslint-rules": "^5.4.0"
},
"dependencies": {
"@ebottacin/ngx-translate-extract": "^1.0.1",
"colorette": "^1.1.0",
"inversify": "^5.0.1",
"path": "^0.12.7",
"reflect-metadata": "^0.1.13",
"typescript": "^3.5.3",
"xml-js": "^1.6.11"
}
}