-
Notifications
You must be signed in to change notification settings - Fork 13
/
package.json
48 lines (48 loc) · 1.63 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
{
"name": "@dmuy/toast",
"version": "2.0.4",
"description": "A simple plugin to display a material concept toast or alert message.",
"keywords": [
"material-toast",
"alert-message",
"toast-message",
"toast-plugin",
"alert-plugin"
],
"license": "MIT",
"author": {
"name": "Dionlee Uy",
"email": "dionleeuy@gmail.com"
},
"repository": "git://github.com/dmuy/Material-Toast.git",
"homepage": "https://dmuy.github.io/Material-Toast/",
"main": "dist/mdtoast.js",
"files": [
"dist",
"vue-toast.js",
"vue3-toast.js"
],
"scripts": {
"build": "npm run compile && npm run minify",
"compile": "rollup --config rollup.config.mjs && npm run compile-css",
"compile-css": "node-sass -x --output-style=expanded src/mdtoast.scss -o=dist && postcss --no-map -u autoprefixer -r dist/mdtoast.css",
"minify": "uglifyjs dist/mdtoast.js -c -m -o dist/mdtoast.min.js && npm run minify-css",
"minify-css": "postcss dist/mdtoast.css --no-map -o dist/mdtoast.min.css --config postcss.config.js"
},
"devDependencies": {
"@babel/core": "^7.21.4",
"@babel/preset-env": "^7.21.4",
"@rollup/plugin-babel": "^6.0.3",
"@rollup/plugin-commonjs": "^24.1.0",
"@rollup/plugin-node-resolve": "^15.0.2",
"autoprefixer": "^10.4.14",
"core-js": "^3.30.1",
"cssnano": "^6.0.0",
"node-sass": "^8.0.0",
"postcss": "^8.4.21",
"postcss-cli": "^10.1.0",
"rollup": "^3.20.2",
"uglify-js": "^3.17.4"
},
"dependencies": {}
}