-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
62 lines (62 loc) · 1.82 KB
/
Copy pathpackage.json
File metadata and controls
62 lines (62 loc) · 1.82 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
{
"name": "@alphanull/domsmith",
"license": "MIT",
"version": "2.2.0",
"description": "DomSmith is a lightweight and declarative DOM builder for JavaScript that enables you to create, update, and remove DOM trees with an intuitive API.",
"keywords": [
"dom",
"dom builder",
"html",
"svg",
"event handling",
"declarative",
"ui",
"frontend"
],
"author": {
"name": "Frank Kudermann",
"email": "kudermann@alphanull.de",
"url": "https://alphanull.de"
},
"repository": {
"type": "git",
"url": "git+https://github.com/alphanull/domsmith.git"
},
"homepage": "https://github.com/alphanull/domsmith#readme",
"bugs": {
"url": "https://github.com/alphanull/domsmith/issues"
},
"type": "module",
"module": "./dist/DomSmith.min.js",
"files": [
"dist",
"dist/plugins",
"README.md",
"LICENSE"
],
"publishConfig": {
"access": "public"
},
"sideEffects": false,
"engines": {
"node": ">=16.0.0"
},
"devDependencies": {
"@eslint/js": "^9.39.2",
"@rollup/plugin-node-resolve": "^16.0.3",
"@rollup/plugin-terser": "^0.4.4",
"@stylistic/eslint-plugin": "^5.6.1",
"eslint": "^9.39.2",
"eslint-plugin-jsdoc": "^61.5.0",
"globals": "^16.5.0",
"jsdoc": "^4.0.5",
"jsdoc-to-markdown": "^9.1.3",
"rollup": "^4.53.3",
"rollup-plugin-delete": "^3.0.2"
},
"scripts": {
"doc": "jsdoc2md --private --separators --template ./scripts/docTemplate.hbs --files ./src/*.js > ./docs/DomSmith.md",
"lint": "echo 'Running ESLint...' && eslint src/ --max-warnings=0",
"build": "npm run lint && rollup -c ./scripts/rollup.config.js"
}
}