-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
109 lines (109 loc) · 2.81 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": "[email protected]"
}
],
"licenses": [
{
"type": "MIT",
"url": "https://github.com/oneibmcloud/devops-tutorial-1/blob/master/LICENSE"
}
],
"main": "app.js",
"dependencies": {
"body-parser": "~1.13.2",
"cookie-parser": "~1.3.5",
"debug": "~2.2.0",
"express": "^4.13.1",
"hbs": "~3.1.0",
"marked": "^0.3.3",
"morgan": "~1.6.1",
"newrelic": "^1.22.1",
"serve-favicon": "~2.3.0",
"swagger-express-mw": "0.0.x",
"swagger-tools": "^0.8.7",
"commander": "^2.6.0",
"http-post": "^0.1.1",
"http-proxy": "^1.8.1",
"cf-deployment-tracker-client": "0.0.7",
"request": "^2.60.0",
"sinon": "^1.17.3",
"phantomjs": "^1.9.16"
},
"devDependencies": {
"async": "*",
"bower-license": "*",
"chai": "^3.2.0",
"chai-as-promised": "^5.1.0",
"colors": "latest",
"csslint": "^0.10.0",
"del": "^1.2.0",
"grunt": "~0.4.5",
"grunt-cli": "^0.1.13",
"grunt-concurrent": "latest",
"grunt-contrib-jshint": "latest",
"grunt-contrib-watch": "latest",
"grunt-env": "latest",
"grunt-simple-mocha": "latest",
"gulp": "^3.9.0",
"gulp-bower": "0.0.10",
"gulp-jshint": "^1.11.2",
"gulp-karma": "*",
"gulp-mocha": "3.0.1",
"gulp-shell": "^0.4.3",
"gulp-util": "^3.0.6",
"jasmine-core": "^2.3.4",
"jshint": "latest",
"jshint-junit-reporter": "^0.2.2",
"karma": "https://registry.npmjs.org/karma/-/karma-0.12.28.tgz",
"karma-chai": "~0.1.0",
"karma-coverage": "^0.3.1",
"karma-jasmine": "^0.3.6",
"karma-junit-reporter": "^0.3.4",
"karma-mocha": "~0.1.10",
"karma-phantomjs-launcher": "~0.2.0",
"karma-sinon": "~1.0.4",
"karma-spec-reporter": "*",
"lodash": "latest",
"mocha": "^2.2.5",
"mocha-jenkins-reporter": "^0.1.9",
"mocha-junit-reporter": "^1.6.1",
"mocha-text-cov": "^0.1.0",
"rewire": "*",
"run-sequence": "~1.0.0",
"should": "^5.2.0",
"supertest": "^0.15.0",
"wd": "^0.3.12",
"xunit-file": "~0.0.7"
},
"engines": {
"node": ">=0.10.0"
},
"repository": {
"type": "git",
"url": "https://github.com/oneibmcloud/devops-tutorial-1.git"
}
}