testit/package.json

35 lines
819 B
JSON
Raw Normal View History

{
2022-07-31 15:55:26 +00:00
"name": "test.it",
2022-07-31 15:50:54 +00:00
"version": "1.1.2",
2021-01-02 08:42:41 +00:00
"description": "minimalistic clinet-side testing library",
"main": "src/testit.js",
"directories": {
"test": "test"
},
"scripts": {
2021-01-02 08:42:41 +00:00
"build": "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": {
2023-03-15 13:54:36 +00:00
"eslint": "^8.36.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"
}