forked from olton/metroui
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
71 lines (71 loc) · 2.04 KB
/
package.json
File metadata and controls
71 lines (71 loc) · 2.04 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
{
"author": "Serhii Pimenov <serhii@pimenov.com.ua>",
"name": "@olton/metroui",
"version": "5.1.11",
"description": "A progressive front-end framework for creating high-performance responsive web applications!",
"keywords": [
"metro",
"metroui",
"javascript",
"html",
"css",
"less",
"mobile-first",
"responsive",
"front-end",
"framework",
"web",
"mobile"
],
"funding": {
"type": "patreon",
"url": "https://www.patreon.com/metroui"
},
"homepage": "https://metroui.org.ua",
"repository": {
"type": "git",
"url": "https://github.com/olton/metroui.git"
},
"license": "MIT",
"main": "source/index.js",
"type": "module",
"scripts": {
"clean": "shx rm -rf lib/*",
"build": "npm run clean && cross-env NODE_NO_WARNINGS=1 MODE=production node build.js",
"dev": "npm run clean && cross-env NODE_NO_WARNINGS=1 MODE=development node build.js",
"pub": "npm publish --access public",
"test": "latte --dom",
"test:components": "latte --dom --include=source/components/**/*.test.js",
"test:ci": "latte --dom --progress=none",
"test:trace": "latte --dom --progress=dots --show-stack --verbose",
"check": "npx @biomejs/biome check --write ./source",
"commit": "node -e \"const mssg = process.argv[1]; require('child_process').execSync('npm run build && git add . && git commit -m \\\"' + mssg + '\\\"', { stdio:[0, 1, 2] })\""
},
"browserslist": [
"last 2 versions"
],
"devDependencies": {
"@biomejs/biome": "2.1.2",
"@olton/esbuild-plugin-autoprefixer": "^0.2.1",
"@olton/esbuild-plugin-progress": "^0.3.1",
"@olton/esbuild-plugin-unlink": "^0.2.1",
"@olton/latte": "^0.17.3",
"chalk": "^5.4.1",
"cross-env": "^7.0.3",
"esbuild": "^0.25.8",
"esbuild-plugin-less": "^1.3.25",
"esbuild-plugin-replace": "^1.4.0",
"shx": "^0.4.0"
},
"dependencies": {
"@olton/datetime": "^3.2.5",
"@olton/dom": "^1.5.1",
"@olton/farbe": "^1.0.9",
"@olton/guardian": "^0.7.3",
"@olton/hooks": "^0.13.1",
"@olton/html": "^0.15.1",
"@olton/model": "^0.18.1",
"@olton/router": "^0.4.1",
"@olton/string": "^0.10.2"
}
}