forked from EddyVerbruggen/nativescript-localize
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
64 lines (64 loc) · 1.75 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
{
"name": "nativescript-localize",
"description": "Native internationalization plugin for NativeScript using platforms standards",
"version": "1.9.3",
"keywords": [
"nativescript",
"internationalization",
"i18n",
"translate",
"translation",
"localize",
"localization"
],
"homepage": "https://github.com/lfabreges/nativescript-localize",
"bugs": "https://github.com/lfabreges/nativescript-localize/issues",
"license": "MIT",
"author": "Ludovic Fabrèges",
"main": "index.js",
"typings": "index.d.ts",
"repository": {
"type": "git",
"url": "https://github.com/lfabreges/nativescript-localize.git"
},
"scripts": {
"compile": "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"
},
"dependencies": {
"format": "^0.2.2",
"jshashes": "^1.0.6",
"mkdirp": "^0.5.1",
"nativescript-hook": "^0.2.1",
"simple-plist": "^0.2.1",
"tns-core-modules": "^2.3.0"
},
"devDependencies": {
"@angular/compiler": "2.3.1",
"@angular/compiler-cli": "2.3.1",
"@angular/core": "2.3.1",
"@types/mkdirp": "^0.3.29",
"@types/node": "^7.0.0",
"rxjs": "^5.0.0-rc.4",
"tns-platform-declarations": "^2.3.0",
"typescript": "2.0.10",
"zone.js": "^0.7.6"
},
"nativescript": {
"platforms": {
"android": "2.4.0",
"ios": "2.4.0"
},
"hooks": [
{
"type": "before-prepare",
"script": "hooks/before-prepare.js",
"inject": true
}
]
}
}