This repository has been archived by the owner on Oct 28, 2021. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
58 lines (58 loc) · 1.84 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
{
"name": "jenkins-ci-and-karma-junit-reporter",
"version": "0.4.0",
"private": true,
"homepage": "https://github.com/erkobridee/jenkins-ci-and-karma-junit-reporter.git",
"authors": [
"Erko Bridee de Almeida Cabrera <[email protected]>"
],
"description": "Example to execute Karma Runner through Jenkinks CI and load xml report file. Karma Runner and require.js + angular.js modular application with Gulp.js. Code and test specs together in same directory module. Vendors Libs, Application Source and Tests specs loaded by require.js on Karma Runner test page.",
"scripts": {
"prestart": "npm run setup",
"start": "echo \"start development\n\" && gulp dev",
"pretest": "npm run setup",
"test": "gulp ci",
"coverage": "gulp coverage",
"testos": "node tools/scripts/testos",
"setup": "node tools/scripts/setup",
"maven": "node tools/scripts/maven"
},
"keywords": [
"test",
"karma",
"gulp",
"angular",
"requirejs"
],
"license": "MIT",
"devDependencies": {
"browser-sync": "^2.9.8",
"del": "^2.0.2",
"gulp": "^3.9.1",
"gulp-cached": "^1.1.0",
"gulp-jshint": "^1.11.2",
"gulp-load-plugins": "^1.0.0-rc.1",
"gulp-util": "^3.0.6",
"jasmine-core": "^2.3.4",
"jshint-stylish": "^2.0.1",
"karma": "^0.13.10",
"karma-chrome-launcher": "^0.2.0",
"karma-coverage": "^0.5.2",
"karma-firefox-launcher": "^0.1.6",
"karma-jasmine": "^0.3.6",
"karma-jasmine-html-reporter": "^0.1.8",
"karma-junit-reporter": "^0.3.7",
"karma-ng-html2js-preprocessor": "^0.1.2",
"karma-phantomjs-launcher": "^0.2.1",
"karma-requirejs": "^0.2.2",
"lazypipe": "^1.0.1",
"lodash": "^3.10.1",
"phantomjs": "^1.9.18",
"requirejs": "^2.1.20",
"run-sequence": "^2.2.1",
"yargs": "^3.26.0"
},
"dependencies": {
"bower": "^1.8.4"
}
}