-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
48 lines (48 loc) · 1.31 KB
/
package.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
{
"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/"
}