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