-
Notifications
You must be signed in to change notification settings - Fork 4
/
package.json
112 lines (112 loc) · 2.51 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
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
{
"name": "@miyagi/core",
"version": "3.3.2",
"description": "miyagi is a component development tool for JavaScript template engines.",
"main": "index.js",
"author": "Michael Großklaus <[email protected]> (https://www.mgrossklaus.de)",
"license": "MIT",
"homepage": "https://www.miyagi.dev",
"bugs": "https://github.com/miyagi-dev/miyagi/issues",
"repository": {
"type": "git",
"url": "[email protected]:miyagi-dev/miyagi.git"
},
"type": "module",
"keywords": [
"components",
"pattern",
"library",
"html",
"frontend"
],
"engines": {
"node": ">=20"
},
"files": [
"api",
"bin",
"dist",
"index.js",
"lib"
],
"bin": {
"miyagi": "./bin/miyagi.js"
},
"dependencies": {
"@stoplight/json-schema-sampler": "^0.3.0",
"ajv": "^8.17.1",
"anymatch": "^3.1.3",
"cookie-parser": "^1.4.6",
"css": "^3.0.0",
"deepmerge": "^4.3.1",
"directory-tree": "^3.5.2",
"express": "^4.19.2",
"js-yaml": "^4.1.0",
"marked": "^13.0.3",
"node-watch": "^0.7.4",
"twing": "^7.1.0-beta.2",
"ws": "^8.18.0",
"yargs": "^17.7.2"
},
"devDependencies": {
"@rollup/plugin-node-resolve": "^15.2.3",
"@rollup/plugin-terser": "^0.4.4",
"@vitest/coverage-v8": "^2.0.5",
"cssnano": "^7.0.4",
"eslint": "^9.8.0",
"eslint-plugin-jsdoc": "^48.11.0",
"gulp": "^5.0.0",
"gulp-postcss": "^10.0.0",
"jsdoc-to-markdown": "^8.0.3",
"postcss": "^8.4.41",
"postcss-import": "^16.1.0",
"pre-commit": "^1.2.2",
"prettier": "^3.3.3",
"rollup": "^4.20.0",
"stylelint": "^16.8.1",
"stylelint-config-standard": "^36.0.1",
"vitest": "^2.0.5"
},
"scripts": {
"build": "gulp build",
"test": "vitest run",
"lint": "stylelint frontend/assets/css/ && eslint lib/ && eslint frontend/assets/js/",
"fix": "eslint lib/ --fix && eslint frontend/assets/js/ --fix",
"release": "standard-version"
},
"browserslist": [
"last 2 versions",
"> 2%",
"not ie <= 11",
"not ie_mob <= 11",
"not op_mini all",
"not op_mob < 100",
"not baidu < 100",
"not and_qq < 100",
"not dead"
],
"overrides": {
"json-pointer": ">=0.6.2",
"minimist": "^1.2.6",
"globals": "^15.8.0",
"twing": "^7.1.0-beta.2"
},
"stylelint": {
"extends": [
"stylelint-config-standard"
],
"rules": {
"custom-property-pattern": null,
"declaration-block-no-redundant-longhand-properties": null,
"keyframes-name-pattern": null,
"no-descending-specificity": null,
"number-max-precision": 5,
"selector-class-pattern": null,
"media-feature-range-notation": null
}
},
"pre-commit": [
"lint",
"test"
]
}