This repository has been archived by the owner on Oct 26, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
54 lines (54 loc) · 1.83 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
{
"name": "speed-dial",
"version": "1.1.0",
"description": "You can set a button in every corner of the page and display smaller buttons in each direction",
"main": "dist/js/speed-dial.js",
"author": "Grzegorz Tomicki",
"license": "MIT",
"scripts": {
"dev": "concurrently \"yarn sass:prod\" \"yarn sass:dev\" \"yarn watch\"",
"prod": "yarn build && yarn sass:prod && yarn postcss && yarn postcss:dist",
"watch": "rollup -c -w",
"build": "rollup -c --environment PRODUCTION",
"sass:dev": "sass --watch sources/scss/style.scss docs/speed-dial.min.css",
"sass:prod": "sass --no-source-map sources/scss/style.scss docs/speed-dial.min.css",
"postcss": "postcss docs/speed-dial.min.css docs/speed-dial.min.css -r",
"postcss:dist": "postcss docs/speed-dial.min.css --dir dist/css/"
},
"browserslist": [
"defaults",
"not IE 11",
"maintained node versions"
],
"homepage": "https://github.com/tomik23/speed-dial-menue#readme",
"repository": {
"type": "git",
"url": "https://github.com/tomik23/speed-dial-menu.git"
},
"bugs": {
"url": "https://github.com/tomik23/speed-dial-menu/issues"
},
"devDependencies": {
"@babel/core": "^7.16.7",
"@babel/eslint-parser": "^7.16.5",
"@babel/preset-env": "^7.16.7",
"@rollup/plugin-babel": "^5.3.0",
"autoprefixer": "^10.4.1",
"concurrently": "^6.5.1",
"core-js": "^3.20.2",
"cssnano": "^5.0.14",
"eslint": "^8.6.0",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-prettier": "^4.0.0",
"postcss": "^8.4.5",
"postcss-cli": "^9.1.0",
"postcss-css-variables": "^0.18.0",
"prettier": "^2.5.1",
"rollup": "^2.62.0",
"rollup-plugin-cleanup": "^3.2.1",
"rollup-plugin-livereload": "^2.0.5",
"rollup-plugin-serve": "^1.1.0",
"rollup-plugin-terser": "^7.0.2",
"sass": "^1.45.2"
}
}