-
Notifications
You must be signed in to change notification settings - Fork 13
/
Copy pathpackage.json
51 lines (51 loc) · 1.44 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
{
"name": "m-",
"description": "Mdash is a design system based on web standards. It's extremely small (see comparison chart), fast, simple, and compatible with any JavaScript framework. \n",
"version": "3.2.0",
"homepage": "https://m-docs.org",
"repository": {
"type": "git",
"url": "https://github.com/jfbrennan/m-"
},
"bugs": "https://github.com/jfbrennan/m-/issues",
"files": [
"/dist"
],
"license": "MIT",
"contributors": [
{
"name": "Jordan Brennan",
"url": "https://github.com/jfbrennan"
}
],
"keywords": [
"ui",
"web",
"css",
"html",
"frontend",
"webcomponents",
"customelements"
],
"browserslist": [
"last 1 version",
"> 5%",
"not dead"
],
"scripts": {
"watch": "nodemon --watch src --ext css,js --exec npm run build",
"build": "rm -r dist; mkdir dist && npm run css && npm run js && npm run icons && cp -R dist/** docs",
"css": "postcss ./src/m-all.css | lightningcss --nesting --minify -o ./dist/m-.css /dev/stdin",
"icons": "cp -R src/m-.woff2 dist/m-.woff2",
"js": "terser ./src/*.js --mangle -o ./dist/m-.js",
"release": "git pull && git commit -a -m \"Released new version: $VERSION\" && git push --tags origin master"
},
"devDependencies": {
"autoprefixer": "^10.4.15",
"lightningcss-cli": "^1.21.7",
"postcss": "^8.4.31",
"postcss-cli": "^10.1.0",
"postcss-import": "^15.1.0",
"terser": "^5.19.4"
}
}