-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
113 lines (113 loc) · 3.48 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
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
{
"name": "Clicker",
"author": "Stephen Hazleton, Aleksandr Balakiriev",
"homepage": "https://github.com/balakirevs/clicker",
"private": true,
"scripts": {
"clean": "ionic-app-scripts clean",
"build": "ionic-app-scripts build",
"lint": "ionic-app-scripts lint",
"ionic:build": "ionic-app-scripts build",
"ionic:serve": "ionic-app-scripts serve",
"e2e": "ionic-app-scripts build && protractor",
"e2e-android": "ionic-app-scripts build && protractor protractor-android.conf.js",
"e2e-ios": "ionic-app-scripts build && protractor protractor-ios.conf.js",
"e2e-cucumber": "ionic-app-scripts build && protractor protractor-cucumber.conf.js",
"postinstall": "webdriver-manager update",
"start": "ionic serve",
"test": "ng test",
"test-coverage": "ng test --code-coverage",
"test-ci": "ng test --watch=false --code-coverage"
},
"version": "2.24.0",
"dependencies": {
"@angular/common": "5.1.1",
"@angular/compiler": "5.1.1",
"@angular/compiler-cli": "5.1.1",
"@angular/core": "5.1.1",
"@angular/forms": "5.1.1",
"@angular/http": "5.1.1",
"@angular/platform-browser": "5.1.1",
"@angular/platform-browser-dynamic": "5.1.1",
"@angular/router": "5.1.1",
"@ionic-native/core": "4.5.2",
"@ionic-native/splash-screen": "4.5.2",
"@ionic-native/status-bar": "4.5.2",
"@ionic/storage": "2.1.3",
"@ngx-translate/core": "9.0.1",
"@ngx-translate/http-loader": "2.0.0",
"angular-cli-ghpages": "0.5.1",
"cordova-android": "6.4.0",
"cordova-browser": "5.0.1",
"cordova-ios": "^4.5.0",
"cordova-plugin-console": "1.1.0",
"cordova-plugin-device": "1.1.7",
"cordova-plugin-splashscreen": "4.1.0",
"cordova-plugin-statusbar": "2.3.0",
"cordova-plugin-whitelist": "1.3.3",
"ionic-angular": "3.9.2",
"ionic-plugin-keyboard": "2.2.1",
"ionicons": "3.0.0",
"rxjs": "5.5.5",
"sw-toolbox": "3.6.0",
"zone.js": "0.8.18"
},
"devDependencies": {
"@angular/cli": "1.6.1",
"@ionic/app-scripts": "3.1.5",
"@types/jasmine": "2.5.54",
"@types/node": "7.0.4",
"appium": "1.7.1",
"appium-doctor": "1.4.3",
"authorize-ios": "1.0.5",
"chai": "4.1.2",
"chai-as-promised": "7.1.1",
"codecov": "3.0.0",
"connect": "3.6.5",
"cucumber": "3.2.0",
"cucumber-html-report": "0.6.3",
"cucumber-junit": "1.7.1",
"ionic-mocks": "1.0.4",
"jasmine-core": "2.8.0",
"jasmine-reporters": "2.2.1",
"jasmine-spec-reporter": "4.2.1",
"karma": "1.7.1",
"karma-chrome-launcher": "2.2.0",
"karma-cli": "1.0.1",
"karma-coverage-istanbul-reporter": "1.3.0",
"karma-jasmine": "1.1.1",
"karma-jasmine-html-reporter": "0.2.2",
"karma-junit-reporter": "1.2.0",
"protractor": "5.2.2",
"protractor-cucumber-framework": "4.1.1",
"serve-static": "1.13.1",
"ts-node": "3.3.0",
"tslint": "5.8.0",
"tslint-eslint-rules": "4.1.1",
"typescript": "2.4.2",
"vinyl": "1.2.0",
"wd": "1.0.0",
"wd-bridge": "0.0.2"
},
"repository": {
"type": "git",
"url": "https://github.com/balakirevs/clicker.git"
},
"license": "MIT",
"description": "Clicker: An Ionic project",
"cordova": {
"platforms": [
"android",
"browser",
"ios"
],
"plugins": {
"cordova-plugin-console": {},
"cordova-plugin-device": {},
"cordova-plugin-splashscreen": {},
"cordova-plugin-statusbar": {},
"cordova-plugin-whitelist": {},
"ionic-plugin-keyboard": {}
}
}
}