-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
55 lines (55 loc) · 1.65 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
{
"name": "mobileclient",
"version": "1.0.0",
"description": "A Mobile Client for Simpatize project",
"repository": {
"type": "git",
"url": "https://github.com/simpatize/mobileclient.git"
},
"dependencies": {
"bower": "^1.3.3",
"http-server": "^0.12.3",
"ionic": "^5.4.16",
"gulp": "^4.0.2",
"gulp-rename": "^2.0.0",
"fs": "0.0.2",
"gulp-replace-task": "^0.11.0",
"yargs": "^16.0.3",
"shelljs": "^0.8.4"
},
"devDependencies": {
"jasmine-core": "^3.6.0",
"karma": "^5.2.2",
"karma-jasmine": "^0.3.7",
"karma-phantomjs-launcher": "^1.0.0",
"karma-sinon": "^1.0.4",
"phantomjs-prebuilt": "^2.1.4",
"protractor": "^7.0.0",
"sinon": "^9.0.3",
"webdriver-manager": "^8.0.0"
},
"cordovaPlugins": [
"cordova-plugin-device",
"cordova-plugin-console",
"cordova-plugin-whitelist",
"cordova-plugin-splashscreen",
"cordova-plugin-statusbar",
"ionic-plugin-keyboard"
],
"cordovaPlatforms": [],
"scripts": {
"postinstall": "./node_modules/bower/bin/bower install",
"prestart": "npm install",
"start": "gulp start",
"build-heroku": "gulp build --env qa",
"heroku-start": "npm run build-heroku && http-server ./www/ -p $PORT",
"build": "gulp build",
"pretest": "npm install",
"test": "karma start karma.conf.js",
"test-single-run": "karma start karma.conf.js --single-run",
"preupdate-webdriver": "npm install",
"update-webdriver": "./node_modules/protractor/bin/webdriver-manager update",
"preprotractor": "npm run update-webdriver",
"protractor": "./node_modules/protractor/bin/protractor e2e-tests/protractor.conf.js"
}
}