forked from davidparsson/junit-report-builder
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
41 lines (41 loc) · 1.05 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
{
"name": "junit-report-builder",
"version": "1.3.0",
"description": "Aimed at making it easier to build Jenkins compatible JUnit XML reports in plugins for testing frameworks",
"main": "src/index.js",
"scripts": {
"test": "grunt test"
},
"repository": {
"type": "git",
"url": "git://github.com/davidparsson/junit-report-builder.git"
},
"keywords": [
"junit",
"xunit",
"report",
"builder"
],
"author": "David Pärsson <david@parsson.se>",
"license": "MIT",
"bugs": {
"url": "https://github.com/davidparsson/junit-report-builder/issues"
},
"homepage": "https://github.com/davidparsson/junit-report-builder",
"devDependencies": {
"grunt": "^0.4.5",
"grunt-contrib-jshint": "^0.11.2",
"grunt-contrib-watch": "^1.0.0",
"grunt-jasmine-nodejs": "1.4.0",
"grunt-release": "^0.12.0",
"jit-grunt": "^0.9.1",
"rimraf": "^2.3.3",
"time-grunt": "^1.2.1"
},
"dependencies": {
"lodash": "^3.8.0",
"mkdirp": "^0.5.0",
"xmlbuilder": "^2.6.2",
"date-format": "0.0.2"
}
}