twist
Version:
Declarative testing for JavaScript.
31 lines (30 loc) • 697 B
JSON
{
"name": "twist",
"description": "Declarative testing for JavaScript.",
"version": "0.0.5",
"type": "module",
"main": "index.js",
"bin": "bin/twist.js",
"license": "MIT",
"repository": "jorgebucaran/twist",
"author": "Jorge Bucaran",
"files": [
"{*.js,bin,lib}"
],
"scripts": {
"test": "c8 bin/twist.js test/*.test.js",
"release": "npm test && git commit -am $npm_package_version && git tag -s $npm_package_version -m $npm_package_version && git push origin main --follow-tags && npm publish"
},
"dependencies": {
"colorette": "*"
},
"devDependencies": {
"c8": "*"
},
"keywords": [
"twist",
"assert",
"runner",
"test"
]
}