-
Notifications
You must be signed in to change notification settings - Fork 12
/
Copy pathpackage.json
90 lines (90 loc) · 2.4 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
86
87
88
89
90
{
"name": "dom99",
"version": "26.1.1",
"description": "Extend html with directives",
"license": "BSL-1.0",
"homepage": "https://dom99.vercel.app/",
"type": "module",
"main": "source/dom99.js",
"module": "source/dom99.js",
"scripts": {
"lint-fix": "eslint --ignore-path .gitignore --fix source documentation/examples plugins components tests/specification tools",
"lint": "eslint --ignore-path .gitignore source documentation/examples plugins components tests/specification tools",
"bundle": "rollup --config tools/rollup.config.js --strictDeprecations",
"test": "tests/specification/SpecRunner.html",
"generate-html": "node tools/buildHTML.js",
"prepare-site": "node tools/prepareSite.js",
"jsdoc": "jsdoc source -t documentation/jsdoctemplate --destination ./documentation/api --recurse",
"bundle-docs": "rollup --config tools/rollup-doc.config.js --strictDeprecations",
"documentation": "npm run generate-html && npm run prepare-site && npm run jsdoc && npm run bundle-docs",
"build": "npm run bundle",
"build-all": "npm run build && npm run documentation",
"prepack": "npm run build-all",
"serve-doc": "serve ./documentation -p 8080",
"serve": "serve ./ -p 8080"
},
"devDependencies": {
"@rollup/plugin-commonjs": "^23.0.2",
"@rollup/plugin-node-resolve": "^15.0.1",
"bootstrap-css-only": "^4.4.1",
"eslint": "^8.26.0",
"eslint-config-red": "^1.9.1",
"filesac": "^14.2.0",
"highlight.js": "^11.3.1",
"html-minifier": "^4.0.0",
"jasmine-core": "^3.10.1",
"jsdoc": "^4.0.0",
"rollup": "^3.13.0",
"serve": "^14.0.1",
"utilsac": "^15.2.0"
},
"engines": {
"node": ">=16.x"
},
"eslintConfig": {
"extends": [
"red"
],
"parserOptions": {
"ecmaVersion": 2022,
"sourceType": "module",
"ecmaFeatures": {}
},
"env": {
"es2022": true,
"browser": true,
"jasmine": true
},
"rules": {}
},
"files": [
"built",
"components",
"source",
"plugins",
"LICENSE.txt",
"readme.md"
],
"repository": {
"type": "git",
"url": "git://github.com/GrosSacASac/DOM99.git"
},
"keywords": [
"dom99",
"html",
"javascript",
"dom",
"declarative",
"custom",
"elements",
"web",
"component",
"framework",
"library",
"reactive",
"data",
"attributes",
"light",
"browser"
]
}