-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
54 lines (54 loc) · 1.31 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
{
"name": "report-viewer",
"description": "Cli for piping a unit test result directly into your browser",
"version": "0.3.3",
"homepage": "https://github.com/paulpflug/report-viewer",
"author": {
"name": "Paul Pflugradt",
"email": "[email protected]"
},
"repository": {
"type": "git",
"url": "git://github.com/paulpflug/report-viewer"
},
"engines": {
"node": "*"
},
"main": "lib/index.js",
"bin": {
"report-viewer": "./index.js"
},
"dependencies": {
"debug": "^2.2.0",
"commander": "^2.9.0",
"socket.io": "^1.4.5",
"xml2json": "^0.9.0",
"report-viewer-default": "^0.3.3",
"opener": "^1.4.1"
},
"devDependencies": {
"coffee-script": "^1.10.0",
"nodemon": "^1.8.1",
"parallelshell": "^2.0.0",
"rimraf": "^2.5.1"
},
"keywords": [
"socket.io",
"mocha",
"report",
"viewer",
"xunit",
"browser",
"live",
"debug"
],
"readmeFilename": "README.md",
"scripts": {
"clean": "rimraf lib/ && mkdir lib",
"prebuild": "npm run clean",
"build": "coffee --compile --output lib/ src/*.coffee",
"watch2": "coffee --watch --output lib/ src/*.coffee",
"watch": "nodemon -q -w src/ --ext 'coffee' --exec 'npm run build'",
"patch": "npm version patch;npm publish;git push;git push --tags"
}
}