eltro/package.json

48 lines
913 B
JSON
Raw Normal View History

{
2020-04-01 15:35:33 +00:00
"name": "eltro",
"version": "1.3.2",
"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",
"test:watch": "npm-watch test"
},
"watch": {
"test": {
"patterns": [
"*"
],
"extensions": "js,mjs",
"quiet": true,
"inherit": true
}
},
"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"
]
}