-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
86 lines (86 loc) · 2.11 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
{
"name": "@olton/metro5",
"description": "Components library",
"private": false,
"version": "0.68.2",
"type": "module",
"funding": [
{
"type": "paypal",
"url": "serhii@pimenov.com.ua"
},
{
"type": "patreon",
"url": "https://www.patreon.com/metroui"
},
{
"type": "subscription",
"url": "https://korzh.com/metroui#licensing"
}
],
"license": "MIT",
"author": "Serhii Pimenov <serhii@pimenov.com.ua> (https://pimenov.com.ua)",
"keywords": [
"met roui",
"js",
"less",
"css",
"html"
],
"repository": {
"type": "git",
"url": "https://github.com/olton/metro5.git"
},
"bugs": {
"url": "https://github.com/olton/metro5/issues"
},
"homepage": "https://github.com/olton/metro5#readme",
"files": [
"src"
],
"scripts": {
"start": "shx rm -rf dist/* && parcel ./demo/*.html",
"build:demo": "parcel build ./demo/*.html",
"clear": "shx rm -rf lib/*",
"build": "npm run clear && rollup --config && npm run minifycss",
"minifycss": "css-minify -f lib/metro5.css -o lib",
"pub": "npm publish --access public"
},
"browserslist": [
"last 1 Chrome versions",
"last 1 Firefox versions",
"last 1 Opera versions",
"last 1 Edge versions"
],
"devDependencies": {
"@rollup/plugin-commonjs": "^25.0.7",
"@rollup/plugin-node-resolve": "^15.2.3",
"assert": "^2.1.0",
"css-minify": "^2.0.0",
"events": "^3.3.0",
"less": "^4.2.0",
"parcel": "^2.11.0",
"parcel-reporter-static-files-copy": "^1.5.3",
"path-browserify": "^1.0.1",
"process": "^0.11.10",
"rollup-plugin-copy": "^3.5.0",
"rollup-plugin-import-css": "^3.4.0",
"rollup-plugin-less": "^1.1.3",
"rollup-plugin-terser": "^7.0.2",
"shx": "^0.3.4",
"util": "^0.12.5",
"vite": "^5.1.1"
},
"dependencies": {
"@olton/animation": "^0.1.0",
"@olton/color": "^0.1.1",
"@olton/datetime": "^3.0.3",
"@olton/html": "^0.4.1",
"@olton/query": "^0.5.1",
"@olton/string": "^0.4.4"
},
"staticFiles": {
"staticPath": "demo/images",
"staticOutPath": "images"
}
}