Update package.json

This updates 'package.json' to prepare for openstack project import.
The 'node-subunit' dependency has been changed to 'subunit-js' to
account for the project rename, dependency layout is reorganized,
and npm scripts are updated to work with CI system.
This commit is contained in:
Tim Buckley 2016-06-09 12:11:36 -06:00
parent 88d03cd26a
commit 45c359feea
1 changed files with 7 additions and 4 deletions

View File

@ -1,10 +1,11 @@
{
"name": "karma-subunit-reporter",
"version": "0.0.2",
"version": "0.0.3",
"description": "A Karma plugin to report results in Subunit format",
"main": "index.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1"
"test": "exit 0",
"lint": "eslint ./"
},
"repository": {
"type": "git",
@ -22,9 +23,11 @@
},
"homepage": "https://github.com/timothyb89/karma-subunit-reporter#readme",
"dependencies": {
"subunit-js": "0.0.2"
},
"devDependencies": {
"eslint": "^1.5.1",
"eslint-config-openstack": "^1.2.4",
"node-subunit": "0.0.1"
"eslint-config-openstack": "^1.2.4"
},
"peerDependencies": {
"karma": ">=0.9"