forked from EddyVerbruggen/nativescript-localize
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
90 lines (90 loc) · 2.34 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
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
{
"name": "nativescript-localize",
"description": "Native internationalization plugin for NativeScript using native capabilities of each platform",
"version": "3.0.5",
"keywords": [
"nativescript",
"internationalization",
"i18n",
"translation",
"localization",
"l10n",
"angular",
"ios",
"android"
],
"homepage": "https://github.com/lfabreges/nativescript-localize",
"bugs": "https://github.com/lfabreges/nativescript-localize/issues",
"license": "MIT",
"author": {
"name": "Ludovic Fabrèges",
"email": "ludovic.fabreges@gmail.com"
},
"contributors": [
{
"name": "Eddy Verbruggen",
"email": "eddyverbruggen@gmail.com"
},
{
"name": "Brendan Ingham",
"email": "brendan.ingham13@gmail.com"
}
],
"main": "index.js",
"typings": "index.d.ts",
"repository": {
"type": "git",
"url": "https://github.com/lfabreges/nativescript-localize.git"
},
"scripts": {
"compile": "tsc -p hooks && tsc && ngc -p tsconfig.aot.json",
"preversion": "npm run compile",
"publish": "git push origin --tags && npm run changelog && git push origin",
"changelog": "github_changelog_generator && git add CHANGELOG.md && git commit -am \"Update CHANGELOG.md\"",
"preuninstall": "node preuninstall.js",
"postinstall": "node postinstall.js",
"tslint": "tslint **/*.ts"
},
"dependencies": {
"mkdirp": "^0.5.1",
"nativescript-hook": "^0.2.4",
"shorthash": "0.0.2",
"simple-plist": "^0.3.0",
"sprintf-js": "^1.1.1"
},
"peerDependencies": {
"tns-core-modules": "^4.0.0"
},
"devDependencies": {
"@angular/compiler": "~5.2.0",
"@angular/compiler-cli": "~5.2.0",
"@angular/core": "~5.2.0",
"@types/mkdirp": "^0.5.1",
"@types/node": "^7.0.0",
"@types/sprintf-js": "^1.1.0",
"rxjs": "^5.5.0",
"tns-core-modules": "^4.0.0",
"tns-platform-declarations": "^4.0.0",
"tslint": "^5.8.0",
"typescript": "~2.6.2",
"zone.js": "~0.8.4"
},
"nativescript": {
"platforms": {
"android": "4.0.0",
"ios": "4.0.0"
},
"hooks": [
{
"type": "before-prepare",
"script": "hooks/before-prepare.js",
"inject": true
},
{
"type": "before-watchPatterns",
"script": "hooks/before-watchPatterns.js",
"inject": true
}
]
}
}