eltro/package.json
Jonatan Nilsson 3bd8d4ba51 Make eltro slightly more robust
Make the printError slightly more robust as well as well as make it print better when obscure errors occur when programmers fiddle with the internal mechanics of node, for example the Error.prepareStack among other things.
2021-06-02 21:28:51 +00:00

35 lines
717 B
JSON

{
"name": "eltro",
"version": "1.0.2",
"description": "Eltro is a tiny no-dependancy test framework for node",
"main": "index.mjs",
"scripts": {
"test": "node cli.mjs test/**/*.test.mjs -r dot"
},
"repository": {
"type": "git",
"url": "git+https://github.com/TheThing/node-eltro.git"
},
"keywords": [
"test",
"unit",
"test",
"testing"
],
"type": "module",
"author": "Jonatan Nilsson",
"license": "WTFPL",
"bugs": {
"url": "https://github.com/TheThing/node-eltro/issues"
},
"homepage": "https://github.com/TheThing/node-eltro#readme",
"bin": {
"eltro": "./cli.mjs"
},
"files": [
"index.mjs",
"cli.mjs",
"README.md",
"lib"
]
}