eltro/package.json

37 lines
725 B
JSON
Raw Normal View History

{
2020-04-01 15:35:33 +00:00
"name": "eltro",
2022-01-11 09:38:20 +00:00
"version": "1.3.0",
"description": "Eltro is a tiny no-dependancy test framework for node",
2020-03-31 17:27:36 +00:00
"main": "index.mjs",
"scripts": {
"test": "node cli.mjs test/**/*.test.mjs"
},
"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"
]
}