2020-03-31 17:24:10 +00:00
|
|
|
{
|
2020-04-01 15:35:33 +00:00
|
|
|
"name": "eltro",
|
2024-09-20 19:09:20 +00:00
|
|
|
"version": "1.4.6",
|
2020-04-01 15:50:55 +00:00
|
|
|
"description": "Eltro is a tiny no-dependancy test framework for node",
|
2020-03-31 17:27:36 +00:00
|
|
|
"main": "index.mjs",
|
2020-03-31 17:24:10 +00:00
|
|
|
"scripts": {
|
2023-09-28 09:33:43 +00:00
|
|
|
"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\"",
|
2023-09-28 09:33:43 +00:00
|
|
|
"test:watch": "node cli.mjs \"test/**/*.test.mjs\" --watch test",
|
|
|
|
"test:watch:legacy": "npm-watch test"
|
2022-03-02 14:25:56 +00:00
|
|
|
},
|
|
|
|
"watch": {
|
|
|
|
"test": {
|
2023-09-28 09:33:43 +00:00
|
|
|
"patterns": [ "lib", "test", "cli.mjs", "index.mjs" ],
|
2022-03-02 14:25:56 +00:00
|
|
|
"extensions": "js,mjs",
|
2023-09-28 09:33:43 +00:00
|
|
|
"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"
|
2022-03-02 14:25:56 +00:00
|
|
|
}
|
2020-03-31 17:24:10 +00:00
|
|
|
},
|
|
|
|
"repository": {
|
|
|
|
"type": "git",
|
2020-04-01 15:35:33 +00:00
|
|
|
"url": "git+https://github.com/TheThing/node-eltro.git"
|
2020-03-31 17:24:10 +00:00
|
|
|
},
|
|
|
|
"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-03-31 17:24:10 +00:00
|
|
|
},
|
2020-04-01 15:35:33 +00:00
|
|
|
"homepage": "https://github.com/TheThing/node-eltro#readme",
|
2020-03-31 17:24:10 +00:00
|
|
|
"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",
|
2021-10-10 03:24:41 +00:00
|
|
|
"LICENSE",
|
2020-03-31 17:27:36 +00:00
|
|
|
"lib"
|
|
|
|
]
|
2020-03-31 17:24:10 +00:00
|
|
|
}
|