-
Notifications
You must be signed in to change notification settings - Fork 18
Expand file tree
/
Copy pathpackage.json
More file actions
73 lines (73 loc) · 2.37 KB
/
Copy pathpackage.json
File metadata and controls
73 lines (73 loc) · 2.37 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
{
"name": "htmljs-parser",
"version": "5.12.1",
"description": "An HTML parser recognizes content and string placeholders and allows JavaScript expressions as attribute values",
"keywords": [
"HTML",
"JavaScript",
"browser",
"compiler",
"expressions",
"nodejs",
"parser",
"server",
"template"
],
"homepage": "https://github.com/marko-js/htmljs-parser",
"repository": {
"type": "git",
"url": "https://github.com/marko-js/htmljs-parser.git"
},
"license": "MIT",
"type": "module",
"exports": {
".": {
"import": "./dist/index.mjs",
"default": "./dist/index.js"
}
},
"main": "./dist/index.js",
"module": "./dist/index.mjs",
"types": "dist/index.d.ts",
"files": [
"dist",
"!**/__tests__",
"!**/*.tsbuildinfo"
],
"scripts": {
"bench": "node bench.ts",
"build": "tsc -p tsconfig.build.json && node build.ts",
"change": "changeset add",
"ci:test": "node --test --experimental-test-coverage --test-coverage-include=\"src/**\" --test-coverage-exclude=\"**/__tests__/**\" --test-reporter=spec --test-reporter-destination=stdout --test-reporter=lcov --test-reporter-destination=lcov.info \"src/**/__tests__/*.test.ts\"",
"format": "pnpm run lint:eslint --fix && pnpm run lint:prettier --write",
"lint": "tsc && pnpm run lint:eslint && pnpm run lint:prettier -l",
"lint:eslint": "eslint .",
"lint:prettier": "prettier .",
"prepare": "husky",
"release": "pnpm run build && changeset publish",
"test": "node --test --test-reporter=dot \"src/**/__tests__/*.test.ts\"",
"test:update": "cross-env UPDATE_SNAPSHOTS=1 pnpm test",
"test:watch": "node --watch --test --test-reporter=dot \"src/**/__tests__/*.test.ts\"",
"version": "changeset version && pnpm install --lockfile-only"
},
"devDependencies": {
"@changesets/changelog-github": "^0.7.0",
"@changesets/cli": "^2.31.0",
"@eslint/js": "^10.0.1",
"@types/node": "^25.9.3",
"cross-env": "^10.1.0",
"degit": "^3.4.7",
"esbuild": "^0.28.1",
"eslint": "^10.5.0",
"eslint-plugin-simple-import-sort": "^13.0.0",
"globals": "^17.6.0",
"husky": "^9.1.7",
"lint-staged": "^17.0.7",
"mitata": "^1.0.34",
"prettier": "^3.8.4",
"prettier-plugin-packagejson": "^3.0.2",
"typescript": "^6.0.3",
"typescript-eslint": "^8.61.0"
},
"packageManager": "pnpm@11.15.1"
}