Skip to content

Commit

Permalink
Adding QA dev deps
Browse files Browse the repository at this point in the history
  • Loading branch information
Paul Serby committed Nov 15, 2013
1 parent 65a130a commit 03ad2dd
Showing 1 changed file with 29 additions and 24 deletions.
53 changes: 29 additions & 24 deletions package.json
@@ -1,25 +1,30 @@
{ "author": "Paul Serby <paul@serby.net>"
, "name": "{NAME}"
, "description": "{DESCRIPTION}"
, "version": "0.0.1"
, "tags": []
, "repository":
{ "type": "git"
, "url": "git@github.com:serby/{NAME}"
{
"author": "Paul Serby <paul@serby.net>",
"name": "{NAME}",
"description": "{DESCRIPTION}",
"version": "0.0.1",
"tags": [],
"repository": {
"type": "git",
"url": "git@github.com:serby/{NAME}"
},
"main": "",
"scripts": {
"lint": "./node_modules/.bin/jshint . --reporter=./node_modules/jshint-full-path/index.js",
"pretest": "npm run-script lint",
"test": "./node_modules/.bin/istanbul cover ./node_modules/.bin/_mocha -- -R spec -r should",
"posttest": "./node_modules/.bin/istanbul check-coverage && rm -rf coverage",
"prepublish": "npm test && npm prune"
},
"engines": {
"node": ">=0.10"
},
"dependencies": {},
"devDependencies": {
"mocha": "1",
"should": "2",
"istanbul": "~0.1.44",
"jshint": "~2.3.0",
"jshint-full-path": "~0.1.0"
}
, "main": ""
, "scripts":
{ "test": "make test"
, "prepublish": "make qa && npm prune"
}
, "engines":
{ "node": ">=0.8"
}
, "dependencies":
{
}
, "devDependencies":
{ "mocha": "*"
, "should": "*"
}
}
}

0 comments on commit 03ad2dd

Please sign in to comment.