run-verify
Version:
Proper test verifications
59 lines (58 loc) • 1 kB
JSON
{
"name": "run-verify",
"version": "1.2.7",
"description": "Proper test verifications",
"main": "lib/index.js",
"scripts": {
"test": "clap check"
},
"keywords": [
"proper",
"async",
"promise",
"callback",
"event",
"test",
"expect",
"verify",
"verification"
],
"author": "Joel Chen",
"license": "Apache-2.0",
"repository": {
"type": "git",
"url": "git+https://github.com/jchip/run-verify.git"
},
"files": [
"lib"
],
"devDependencies": {
"@xarc/module-dev": "^1.0.0"
},
"nyc": {
"all": true,
"reporter": [
"lcov",
"text",
"text-summary"
],
"exclude": [
"coverage",
"*clap.js",
"gulpfile.js",
"dist",
"test"
],
"check-coverage": true,
"statements": 100,
"branches": 100,
"functions": 100,
"lines": 100,
"cache": true
},
"prettier": {
"printWidth": 100,
"trailingComma": "none",
"arrowParens": "avoid"
}
}