aboutsummaryrefslogtreecommitdiffstats
path: root/tools/node_modules/expresso/package.json
diff options
context:
space:
mode:
Diffstat (limited to 'tools/node_modules/expresso/package.json')
-rw-r--r--tools/node_modules/expresso/package.json26
1 files changed, 26 insertions, 0 deletions
diff --git a/tools/node_modules/expresso/package.json b/tools/node_modules/expresso/package.json
new file mode 100644
index 0000000..e5a5f50
--- /dev/null
+++ b/tools/node_modules/expresso/package.json
@@ -0,0 +1,26 @@
+{
+ "name": "expresso",
+ "version": "0.9.2",
+ "description": "TDD framework, light-weight, fast, CI-friendly",
+ "author": {
+ "name": "TJ Holowaychuk",
+ "email": "tj@vision-media.ca"
+ },
+ "repository": {
+ "type": "git",
+ "url": "git://github.com/visionmedia/expresso"
+ },
+ "bin": {
+ "expresso": "./bin/expresso",
+ "node-jscoverage": "./deps/jscoverage/node-jscoverage"
+ },
+ "scripts": {
+ "preinstall": "make deps/jscoverage/node-jscoverage"
+ },
+ "readme": "\n# Expresso\n\n TDD framework for [nodejs](http://nodejs.org).\n \n## Features\n\n - light-weight\n - intuitive async support\n - intuitive test runner executable\n - test coverage support and reporting\n - uses the _assert_ module\n - `assert.eql()` alias of `assert.deepEqual()`\n - `assert.response()` http response utility\n - `assert.includes()`\n - `assert.type()`\n - `assert.isNull()`\n - `assert.isUndefined()`\n - `assert.isNotNull()`\n - `assert.isDefined()`\n - `assert.match()`\n - `assert.length()`\n\n## Installation\n\nTo install both expresso _and_ node-jscoverage run:\n\n $ make install\n\nTo install expresso alone (no build required) run:\n\n $ make install-expresso\n\nInstall via npm:\n\n $ npm install expresso\n\n## Usage\n\nCreate a directory named `test` in your project and place JavaScript files in it. Each JavaScript file can export multiple tests of this format:\n\n```js\nexports['test String#length'] = function(beforeExit, assert) {\n assert.equal(6, 'foobar'.length);\n};\n```\n\nTo run tests, type `expresso`.\n\nFor more information, [see the manual](http://visionmedia.github.com/expresso/).\n\n## License\n\n(The MIT License)\n\nCopyright (c) 2010 TJ Holowaychuk <tj@vision-media.ca>\n\nPermission is hereby granted, free of charge, to any person obtaining\na copy of this software and associated documentation files (the\n'Software'), to deal in the Software without restriction, including\nwithout limitation the rights to use, copy, modify, merge, publish,\ndistribute, sublicense, and/or sell copies of the Software, and to\npermit persons to whom the Software is furnished to do so, subject to\nthe following conditions:\n\nThe above copyright notice and this permission notice shall be\nincluded in all copies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED 'AS IS', WITHOUT WARRANTY OF ANY KIND,\nEXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF\nMERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.\nIN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY\nCLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT,\nTORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE\nSOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.\n",
+ "_id": "expresso@0.9.2",
+ "dist": {
+ "shasum": "47b9206d2db9a4394fba94688902176f92932ce0"
+ },
+ "_from": "expresso@0.9.2"
+}