campfire.js
Version:
a cozy web framework
49 lines (48 loc) • 1.34 kB
JSON
{
"devDependencies": {
"@testing-library/jest-dom": "^5.14.1",
"esbuild": "^0.12.24",
"esbuild-node-externals": "^1.3.0",
"jest": "^27.1.1",
"jest-cli": "^27.1.1",
"typedoc": "^0.22.1",
"typescript": "^4.4.2"
},
"jest": {
"extensionsToTreatAsEsm": [
".ts"
],
"setupFilesAfterEnv": [
"./src/jest.setup.js"
]
},
"name": "campfire.js",
"description": "a cozy web framework",
"version": "4.0.0-alpha3",
"main": "dist/campfire.cjs.js",
"module": "dist/campfire.esm.js",
"types": "dist/campfire.d.ts",
"files": [
"dist"
],
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"mkdocs": "npx typedoc src/campfire.ts src/types.ts --cleanOutputDir --out site/docs/ --darkHighlightTheme material-palenight --customCss site/tsdoc_style.css && cp campfire.png site/docs/campfire.png",
"build": "npx tsc && node esbuild.config.js && npx jest && cp dist/testing/* dist/ && rm -rf dist/testing/"
},
"repository": {
"type": "git",
"url": "git+https://github.com/xyzshantaram/campfire.git"
},
"keywords": [
"web",
"framework",
"dom"
],
"author": "shantaram",
"license": "MIT",
"bugs": {
"url": "https://github.com/xyzshantaram/campfire/issues"
},
"homepage": "https://xyzshantaram.github.io/campfire/"
}