You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
26 lines
567 B
26 lines
567 B
{
|
|
"name": "simple-mocha",
|
|
"version": "0.0.9",
|
|
"description": "Simple stupid implementation of Mocha test runner. Tests can be run directly within node as any Nodejs code.",
|
|
"author": "Harish.K<harish2704@gmail.com>",
|
|
"license": "MIT",
|
|
"keywords": [
|
|
"mocha",
|
|
"test runner",
|
|
"testing",
|
|
"bdd",
|
|
"tdd"
|
|
],
|
|
"repository": {
|
|
"type": "git",
|
|
"url": "git@github.com:harish2704/simple-mocha.git"
|
|
},
|
|
"main": "./index.js",
|
|
"dependencies": {
|
|
"async": "~1.2.1"
|
|
},
|
|
"devDependencies": {},
|
|
"scripts": {
|
|
"test": "mocha"
|
|
}
|
|
}
|
|
|