testit/package.json

36 lines
847 B
JSON

{
"name": "testit",
"version": "1.0.0",
"description": "minimalistic clinet-side testing library",
"main": "src/testit.js",
"directories": {
"test": "test"
},
"scripts": {
"build": "esbuild src/testit.js --minify --sourcemap --format=esm --outfile=dist/testit.min.js",
"lint": "npx eslint src/testit.js",
"test": "npx live-server --open=test/ --port=5000"
},
"dependencies": {},
"devDependencies": {
"eslint": "^7.16.0",
"live-server": "^1.2.1"
},
"repository": {
"type": "git",
"url": "git+https://github.com/n2geoff/testit.git"
},
"keywords": [
"test",
"testing",
"library",
"minimalist"
],
"author": "Geoff Doty",
"license": "MIT",
"bugs": {
"url": "https://github.com/n2geoff/testit/issues"
},
"homepage": "https://github.com/n2geoff/testit#readme"
}