Using istanbul, and also adding a .gitignore so I can be lazier about things when committing.
16 lines
368 B
JSON
16 lines
368 B
JSON
{
|
|
"name": "mithril",
|
|
"version": "1.0.0",
|
|
"description": "A framework for building brilliant applications",
|
|
"main": "index.js",
|
|
"scripts": {
|
|
"build": "node bundler/bundler",
|
|
"test": "node ospec/bin/ospec",
|
|
"cover": "istanbul cover --print both ospec/bin/ospec"
|
|
},
|
|
"author": "Leo Horie",
|
|
"license": "MIT",
|
|
"devDependencies": {
|
|
"istanbul": "^0.4.3"
|
|
}
|
|
}
|