This repository has been archived by the owner on Sep 5, 2020. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
109 lines (109 loc) · 2.78 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
{
"name": "devops-tutorial",
"version": "0.0.5",
"private": true,
"description": "DevOps Tutorial App",
"scripts": {
"start": "node app.js",
"mocha_unit_test_api": "./node_modules/mocha/bin/mocha --recursive --reporter xunit-file test/api/",
"karma_unit_test": "gulp dev-karma",
"mocha_unit_test": "gulp dev-mocha",
"lint": "gulp lint",
"test": "grunt test:sauce:parallel"
},
"keywords": [
"bluemix",
"bluemix devops",
"bluemix deploy",
"bluemix sample",
"bluemix pipeline",
"bluemix tutorial"
],
"author": "IBM Corp.",
"contributors": [
{
"name": "Alper Gokcehan",
"email": "alper.gokcehan@us.ibm.com"
}
],
"licenses": [
{
"type": "MIT",
"url": "https://github.com/oneibmcloud/devops-tutorial-1/blob/master/LICENSE"
}
],
"main": "app.js",
"dependencies": {
"body-parser": "^1.19.0",
"cf-deployment-tracker-client": "0.1.4",
"commander": "^2.20.0",
"cookie-parser": "~1.4.4",
"debug": "~4.1.1",
"express": "^4.17.1",
"hbs": "~4.0.4",
"http-post": "^0.1.1",
"http-proxy": "^1.17.0",
"marked": "^0.6.3",
"morgan": "^1.9.1",
"newrelic": "^5.10.0",
"phantomjs": "^2.1.7",
"request": "^2.88.0",
"serve-favicon": "^2.5.0",
"sinon": "^7.3.2",
"swagger-express-mw": "^0.7.0",
"swagger-tools": "^0.10.4"
},
"devDependencies": {
"async": "^3.1.0",
"bower-license": "*",
"chai": "^4.2.0",
"chai-as-promised": "^7.1.1",
"colors": "latest",
"csslint": "^1.0.5",
"del": "^4.1.1",
"grunt": "~1.0.4",
"grunt-cli": "^1.3.2",
"grunt-concurrent": "latest",
"grunt-contrib-jshint": "latest",
"grunt-contrib-watch": "latest",
"grunt-env": "latest",
"grunt-simple-mocha": "latest",
"gulp": "^3.9.1",
"gulp-bower": "0.0.15",
"gulp-jshint": "^2.1.0",
"gulp-karma": "*",
"gulp-mocha": "6.0.0",
"gulp-shell": "^0.7.1",
"gulp-util": "^3.0.8",
"jasmine-core": "^3.4.0",
"jshint": "latest",
"jshint-junit-reporter": "^0.2.3",
"karma": "4.1.0",
"karma-chai": "~0.1.0",
"karma-coverage": "^1.1.2",
"karma-jasmine": "^2.0.1",
"karma-junit-reporter": "^1.2.0",
"karma-mocha": "~1.3.0",
"karma-phantomjs-launcher": "~1.0.4",
"karma-sinon": "~1.0.5",
"karma-spec-reporter": "0.0.32",
"lodash": "latest",
"mocha": "^6.1.4",
"mocha-jenkins-reporter": "^0.4.1",
"mocha-junit-reporter": "^1.23.0",
"mocha-text-cov": "^0.1.1",
"rewire": "4.0.1",
"run-sequence": "~2.2.1",
"should": "^13.2.3",
"supertest": "^4.0.2",
"wd": "^1.11.2",
"xunit-file": "~1.0.0"
},
"engines": {
"node": ">=0.10.0"
},
"repository": {
"type": "git",
"url": "https://github.com/oneibmcloud/devops-tutorial-1.git"
}
}