eltro/package.json

59 lines
1.3 KiB
JSON

{
"name": "eltro",
"version": "1.4.5",
"description": "Eltro is a tiny no-dependancy test framework for node",
"main": "index.mjs",
"scripts": {
"echo": "echo helloworld",
"echo:watch": "node cli.mjs --watch test --npm echo",
"test": "node cli.mjs \"test/**/*.test.mjs\"",
"test:watch": "node cli.mjs \"test/**/*.test.mjs\" --watch test",
"test:watch:legacy": "npm-watch test"
},
"watch": {
"test": {
"patterns": [ "lib", "test", "cli.mjs", "index.mjs" ],
"extensions": "js,mjs",
"delay": 50
},
"test_quick": {
"patterns": [ "cli.mjs", "index.mjs" ]
},
"test_quick_js": {
"patterns": [ "cli.mjs", "index.mjs" ],
"extensions": "js"
},
"test_invalid_extensions": {
"patterns": [ "cli.mjs", "index.mjs" ],
"extensions": ".js.bla"
}
},
"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"
]
}