eltro/package.json

48 lines
913 B
JSON

{
"name": "eltro",
"version": "1.3.2",
"description": "Eltro is a tiny no-dependancy test framework for node",
"main": "index.mjs",
"scripts": {
"test": "node cli.mjs test/**/*.test.mjs",
"test:watch": "npm-watch test"
},
"watch": {
"test": {
"patterns": [
"*"
],
"extensions": "js,mjs",
"quiet": true,
"inherit": true
}
},
"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",
"LICENSE",
"lib"
]
}