-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
56 lines (56 loc) · 2 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
{
"name": "angular-weather",
"version": "0.0.2",
"description": "Angular module to get and display the actual weather in somewhere. The module use the openweathermap.org API.",
"main": "gulpfile.js",
"dependencies": {},
"devDependencies": {
"bower": "^1.4.1",
"gulp": "^3.9.0",
"gulp-clean": "^0.3.1",
"gulp-ng-annotate": "^1.0.0",
"gulp-uglify": "^1.2.0",
"http-server": "^0.8.0",
"jasmine-core": "^2.3.4",
"karma": "^0.13.2",
"karma-chrome-launcher": "^0.2.0",
"karma-firefox-launcher": "^0.1.6",
"karma-jasmine": "^0.3.6",
"karma-junit-reporter": "^0.3.1",
"protractor": "^2.1.0",
"shelljs": "^0.5.1"
},
"scripts": {
"postinstall": "bower install",
"prestart": "npm install",
"start": "http-server -a localhost -p 8000 -c-1",
"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": "webdriver-manager update",
"preprotractor": "npm run update-webdriver",
"protractor": "protractor e2e-tests/protractor.conf.js",
"update-index-async": "node -e \"require('shelljs/global'); sed('-i', /\\/\\/@@NG_LOADER_START@@[\\s\\S]*\\/\\/@@NG_LOADER_END@@/, '//@@NG_LOADER_START@@\\n' + sed(/sourceMappingURL=angular-loader.min.js.map/,'sourceMappingURL=bower_components/angular-loader/angular-loader.min.js.map','app/bower_components/angular-loader/angular-loader.min.js') + '\\n//@@NG_LOADER_END@@', 'app/index-async.html');\"",
"test-gulp": "gulp test"
},
"repository": {
"type": "git",
"url": "git+https://github.com/ceoaliongroo/angular-weather.git"
},
"keywords": [
"weather",
"climate",
"temperature",
"clime",
"humidity",
"forecast",
"precipitation"
],
"author": "Carlos Mantilla",
"license": "MIT",
"bugs": {
"url": "https://github.com/ceoaliongroo/angular-weather/issues"
},
"homepage": "https://github.com/ceoaliongroo/angular-weather#readme"
}