Getting set up with ospec is deceptively simple, and adding just a bit more documentation should help new users from falling into the trap of overthinking the test config. (I know that I ended up down a very strange rabbit hole when pulling ospec into a project). This also adjusts the bin definition in the package file so that we can hopefully just use the `ospec` command instead of a folder ref.
16 lines
341 B
JSON
16 lines
341 B
JSON
{
|
|
"name": "ospec",
|
|
"version": "1.1.0",
|
|
"description": "Noiseless testing framework",
|
|
"main": "ospec.js",
|
|
"directories": {
|
|
"test": "tests"
|
|
},
|
|
"keywords": [ "testing" ],
|
|
"author": "Leo Horie <lhorie@hotmail.com>",
|
|
"license": "MIT",
|
|
"bin": {
|
|
"ospec": "./bin/ospec"
|
|
},
|
|
"repository": "lhorie/mithril.js#rewrite"
|
|
}
|