-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
executable file
·76 lines (76 loc) · 2.33 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
{
"name": "nativescript-ng2-translate",
"version": "1.3.0",
"description": "Use ng2-translate with NativeScript + Angular2.",
"main": "nativescript-ng2-translate.js",
"typings": "nativescript-ng2-translate.d.ts",
"repository": {
"type": "git",
"url": "git+https://github.com/NathanWalker/nativescript-ng2-translate.git"
},
"keywords": [
"angular2",
"ng2",
"ng2-translate",
"i18n",
"nativescript"
],
"author": "NathanWalker <NathanWalker>",
"license": "MIT",
"bugs": {
"url": "https://github.com/NathanWalker/nativescript-ng2-translate/issues"
},
"homepage": "https://github.com/NathanWalker/nativescript-ng2-translate#readme",
"scripts": {
"build": "tsc",
"demo.ios": "npm run preparedemo; cd src; tns emulate ios",
"demo.android": "npm run preparedemo; cd src; tns run android",
"test": "karma start",
"test-watch": "karma start --no-single-run --auto-watch",
"ci": "npm run test",
"docs": "typedoc --options typedoc.json src/app/app.ts",
"postinstall": "typings install",
"preparedemo": "npm run build; cd src; tns install"
},
"dependencies": {
"@angular/common": "^2.1.0",
"@angular/compiler": "^2.1.0",
"@angular/core": "^2.1.0",
"@angular/forms": "^2.1.0",
"@angular/http": "^2.1.0",
"@angular/platform-browser": "^2.1.0",
"@angular/platform-browser-dynamic": "^2.1.0",
"@angular/router": "^3.1.0",
"es-module-loader": "^1.0.0",
"core-js": "^2.4.1",
"ng2-translate": "^3.1.2",
"reflect-metadata": "0.1.8",
"rxjs": "5.0.0-beta.12",
"systemjs": "~0.19.27",
"tns-core-modules": "^2.3.0",
"zone.js": "0.6.25"
},
"devDependencies": {
"autoprefixer": "^6.3.2",
"jasmine-core": "^2.3.4",
"jasmine-spec-reporter": "^2.4.0",
"karma": "0.13.22",
"karma-chrome-launcher": "^1.0.1",
"karma-coverage": "^1.0.0",
"karma-jasmine": "^1.0.2",
"karma-phantomjs-launcher": "^1.0.0",
"karma-sourcemap-loader": "^0.3.7",
"karma-typescript-preprocessor": "^0.2.0",
"node-sass": "^3.7.0",
"phantomjs-prebuilt": "^2.1.7",
"remap-istanbul": "^0.6.3",
"rimraf": "^2.5.2",
"systemjs-builder": "^0.15.16",
"traceur": "^0.0.108",
"tsconfig-lint": "^0.11.0",
"tslint": "^3.4.0",
"typedoc": "^0.3.12",
"typescript": "^1.8.10",
"typings": "^0.8.1"
}
}