-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
85 lines (85 loc) · 3.09 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
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
{
"name": "@beforesemicolon/markup",
"version": "1.14.0",
"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",
"docs:watch": "rm -rf website && NODE_ENV=development nodemon --watch docs -e js,css,md,json --exec 'node node_modules/@beforesemicolon/builder/dist/esm/docs/run.js'",
"local": "nodemon --watch src -e ts --exec 'npm run build && npm pack && npm link'",
"build:docs": "node node_modules/@beforesemicolon/builder/dist/esm/docs/run.js",
"build:browser": "node node_modules/@beforesemicolon/builder/dist/esm/build-browser.js",
"build:modules": "node node_modules/@beforesemicolon/builder/dist/esm/build-modules.js",
"build": "rm -rf dist && npm-run-all lint test && tsc --emitDeclarationOnly && npm-run-all build:modules build:browser",
"lint": "eslint ./src && prettier --check .",
"format": "eslint ./src --fix && prettier --write ."
},
"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.4.0",
"@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.19.10",
"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": "^9.2.0",
"highlight.js": "^11.10.0",
"install": "^0.13.0",
"isomorphic-dompurify": "^2.16.0",
"jest": "^29.7.0",
"jest-environment-jsdom": "^29.7.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.6.0"
}
}