mirror of https://github.com/n2geoff/testit.git
35 lines
819 B
JSON
35 lines
819 B
JSON
{
|
|
"name": "test.it",
|
|
"version": "1.1.2",
|
|
"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": "^8.20.0"
|
|
},
|
|
"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"
|
|
}
|