-
-
Notifications
You must be signed in to change notification settings - Fork 2k
/
package.json
78 lines (78 loc) · 2.25 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
{
"author": "Serhii Pimenov <[email protected]>",
"name": "@olton/metroui",
"version": "5.1.0",
"description": "The front-end framework for Build responsive, mobile-first projects on the web with the first front-end component library in Metro Style",
"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/Metro-UI-CSS.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",
"watch": "npm run clean && cross-env NODE_NO_WARNINGS=1 MODE=development node watch.js",
"deploy": "node deploy.cjs",
"deploy:dev": "node deploy-dev.cjs",
"pub": "npm publish --access public",
"test": "easytest --include='__tests__/*.test.js' --skip='gravatar,touch,sidebar,list.html,audio-player'",
"test:abc": "easytest --include='abc/accordion.test.js' --coverage --verbose --dom --errors"
},
"browserslist": [
"last 2 versions",
"not ie >= 0",
"not ie_mob >= 0",
"not op_mini all",
"not kaios >= 0"
],
"devDependencies": {
"@olton/easytest": "^0.39.0",
"@olton/esbuild-plugin-autoprefixer": "^0.2.0",
"@olton/esbuild-plugin-progress": "^0.3.0",
"@olton/esbuild-plugin-unlink": "^0.2.0",
"chalk": "^5.3.0",
"cross-env": "^7.0.3",
"esbuild": "^0.24.0",
"esbuild-plugin-less": "^1.3.10",
"esbuild-plugin-replace": "^1.4.0",
"ftp-deploy": "^2.4.7",
"shx": "^0.3.4"
},
"dependencies": {
"@olton/animation": "^0.3.0",
"@olton/datetime": "^3.0.5",
"@olton/farbe": "^1.0.4",
"@olton/guardian": "^0.5.1",
"@olton/hooks": "^0.10.0",
"@olton/html": "^0.11.0",
"@olton/string": "^0.5.0",
"m4q": "^3.1.1"
},
"prettier": {
"tabWidth": 4,
"semi": true,
"insertPragma": true
}
}