eltro/package.json

59 lines
1.3 KiB
JSON
Raw Normal View History

{
2020-04-01 15:35:33 +00:00
"name": "eltro",
"version": "1.4.5",
"description": "Eltro is a tiny no-dependancy test framework for node",
2020-03-31 17:27:36 +00:00
"main": "index.mjs",
"scripts": {
"echo": "echo helloworld",
"echo:watch": "node cli.mjs --watch test --npm echo",
2023-09-03 00:12:49 +00:00
"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",
2020-04-01 15:35:33 +00:00
"url": "git+https://github.com/TheThing/node-eltro.git"
},
"keywords": [
"test",
"unit",
"test",
"testing"
],
"type": "module",
"author": "Jonatan Nilsson",
"license": "WTFPL",
"bugs": {
2020-04-01 15:35:33 +00:00
"url": "https://github.com/TheThing/node-eltro/issues"
},
2020-04-01 15:35:33 +00:00
"homepage": "https://github.com/TheThing/node-eltro#readme",
"bin": {
2020-04-01 15:35:33 +00:00
"eltro": "./cli.mjs"
2020-03-31 17:27:36 +00:00
},
"files": [
"index.mjs",
"cli.mjs",
"README.md",
"LICENSE",
2020-03-31 17:27:36 +00:00
"lib"
]
}