test/package.json

42 lines
997 B
JSON
Raw Normal View History

2022-12-22 12:50:12 +00:00
{
"name": "@holllo/test",
"description": "Tiny testing library designed to run anywhere.",
"license": "AGPL-3.0-or-later",
2022-12-28 12:19:36 +00:00
"version": "0.2.1",
2022-12-22 12:50:12 +00:00
"homepage": "https://git.bauke.xyz/Holllo/test",
2022-12-26 11:22:19 +00:00
"bugs": {
"email": "helllo@holllo.org",
"url": "https://github.com/Holllo/test/issues"
},
2022-12-22 12:50:12 +00:00
"publishConfig": {
"access": "public"
},
"type": "module",
"main": "./build/index.js",
"types": "./build/index.d.ts",
"files": [
"build/"
],
"scripts": {
"build": "tsx esbuild.ts && tsc",
"dev": "vite",
"lint": "xo",
"test": "pnpm run build && tsx tests/index.ts && tsx tests/example.ts"
},
"devDependencies": {
"@bauke/eslint-config": "^0.1.2",
"@bauke/prettier-config": "^0.1.2",
"esbuild": "^0.16.10",
"tsx": "^3.12.1",
"typescript": "^4.9.4",
"vite": "^4.0.2",
"xo": "^0.53.1"
},
"prettier": "@bauke/prettier-config",
"xo": {
"extends": "@bauke/eslint-config",
"prettier": true,
"space": true
}
}