-
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
93 lines (93 loc) · 3.36 KB
/
Copy pathpackage.json
File metadata and controls
93 lines (93 loc) · 3.36 KB
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
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
{
"name": "@beforesemicolon/markup",
"version": "1.18.4",
"description": "Reactive HTML Templating System",
"engines": {
"node": ">=18.16.0"
},
"type": "module",
"types": "./dist/types/index.d.ts",
"exports": {
"import": "./dist/esm/index.js",
"require": "./dist/cjs/index.js",
"default": "./dist/cjs/index.js",
"types": "./dist/types/index.d.ts"
},
"scripts": {
"test": "jest --coverage",
"test:watch": "jest --watch",
"local": "run-p local:watch local:serve",
"local:watch": "node build-docs.js && nodemon --exec 'node build-docs.js'",
"local:serve": "npm run local:serve:en",
"build": "rm -rf dist && npm-run-all lint test && tsc --emitDeclarationOnly && node build.js",
"lint": "eslint ./src && prettier --check .",
"format": "eslint ./src --fix && prettier --write .",
"benchmark": "npm-run-all benchmark:repeat benchmark:dom benchmark:reactive",
"benchmark:repeat": "tsx benchmarks/repeat-cache.bench.ts",
"benchmark:dom": "tsx benchmarks/repeat-dom.bench.ts",
"benchmark:reactive": "tsx benchmarks/reactive-list.bench.ts",
"local:serve:en": "npx http-server ./website/en -p 8080",
"local:serve:zh": "npx http-server ./website/zh -p 8081",
"local:serve:es": "npx http-server ./website/es -p 8082",
"local:serve:pt": "npx http-server ./website/pt -p 8083",
"local:serve:fr": "npx http-server ./website/fr -p 8084"
},
"author": "Elson Correia",
"license": "BSD-3-Clause",
"repository": {
"url": "https://github.com/beforesemicolon/markup",
"type": "git"
},
"keywords": [
"html",
"templating system",
"template literal",
"markup"
],
"funding": {
"url": "https://github.com/sponsors/beforesemicolon",
"type": "github"
},
"devDependencies": {
"@beforesemicolon/builder": "^1.8.25",
"@beforesemicolon/site-builder": "^1.5.1",
"@gjsify/esbuild-plugin-transform-ext": "0.0.4",
"@types/jest": "^29.5.11",
"@types/jsdom": "^21.1.6",
"@types/jsdom-global": "^3.0.7",
"@types/node": "^20.10.5",
"@types/node-sass": "^4.11.7",
"@typescript-eslint/eslint-plugin": "^6.15.0",
"@typescript-eslint/parser": "^6.15.0",
"core-js": "^3.34.0",
"esbuild": "^0.28.1",
"esbuild-plugin-text-replace": "^1.3.0",
"eslint": "^8.56.0",
"eslint-config-prettier": "^9.1.0",
"eslint-config-standard": "^17.1.0",
"eslint-plugin-import": "^2.29.1",
"eslint-plugin-n": "^16.5.0",
"eslint-plugin-prettier": "^5.1.2",
"eslint-plugin-promise": "^6.1.1",
"front-matter": "^4.0.2",
"global-jsdom": "^25.0.0",
"highlight.js": "^11.10.0",
"install": "^0.13.0",
"isomorphic-dompurify": "^2.16.0",
"jest": "^29.7.0",
"jest-environment-jsdom": "^30.3.0",
"jsdom": "^25.0.1",
"marked": "^14.1.2",
"marked-highlight": "^2.1.4",
"nodemon": "^3.1.7",
"npm-run-all": "^4.1.5",
"prettier": "3.3.3",
"tinybench": "^3.0.0",
"ts-jest": "^29.1.1",
"tsx": "^4.7.0",
"typescript": "^5.3.3"
},
"dependencies": {
"@beforesemicolon/html-parser": "^0.11.0"
}
}