testit/package.json

36 lines
842 B
JSON
Raw Normal View History

{
2022-07-31 15:55:26 +00:00
"name": "test.it",
2024-06-16 20:04:12 +00:00
"version": "1.1.3",
"description": "minimalistic client-side testing library",
"main": "src/testit.js",
2024-06-16 20:04:12 +00:00
"type": "module",
"directories": {
"test": "test"
},
"scripts": {
2024-06-16 20:04:12 +00:00
"build": "npx esbuild src/testit.js --minify --sourcemap --format=esm --outfile=dist/testit.min.js",
2020-09-08 22:37:24 +00:00
"lint": "npx eslint src/testit.js",
2020-09-20 19:59:30 +00:00
"test": "npx live-server --open=test/ --port=5000"
},
2021-01-02 08:42:41 +00:00
"dependencies": {},
2020-09-08 22:27:17 +00:00
"devDependencies": {
2024-06-16 20:04:12 +00:00
"eslint": "^9.5.0"
2020-09-08 22:27:17 +00:00
},
"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"
}