-
Notifications
You must be signed in to change notification settings - Fork 4
/
package.json
62 lines (62 loc) · 1.56 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
{
"name": "material-bottom-nav",
"version": "1.3.0",
"description": "A bottom navigation bar adhering to the Material Design specification.",
"keywords": [
"material",
"design",
"bottom",
"nav",
"navigation",
"menu",
"bar",
"ui",
"tab"
],
"homepage": "https://github.com/michaelbull/material-bottom-nav#readme",
"bugs": {
"url": "https://github.com/michaelbull/material-bottom-nav/issues"
},
"license": "ISC",
"author": {
"name": "Michael Bull",
"url": "https://www.michael-bull.com"
},
"files": [
"bottom-nav.scss",
"img"
],
"main": "bottom-nav.scss",
"repository": {
"type": "git",
"url": "git+https://github.com/michaelbull/material-bottom-nav.git"
},
"scripts": {
"clean": "rimraf dist",
"start": "webpack-dev-server --config webpack.dev.js",
"prebuild": "npm run clean",
"build": "webpack --config webpack.prod.js ",
"predeploy": "npm run build",
"deploy": "push-dir --dir=dist --branch=gh-pages",
"prepublish": "npm run build"
},
"devDependencies": {
"css-loader": "6.5.1",
"cssnano": "5.0.14",
"cssnano-preset-advanced": "5.1.9",
"handlebars": "4.7.7",
"handlebars-loader": "1.7.1",
"html-webpack-plugin": "5.5.0",
"mini-css-extract-plugin": "2.4.5",
"postcss-loader": "6.2.1",
"push-dir": "0.4.1",
"rimraf": "3.0.2",
"sass": "1.45.1",
"sass-loader": "12.4.0",
"style-loader": "3.3.1",
"webpack": "5.65.0",
"webpack-cli": "4.9.1",
"webpack-dev-server": "4.7.1",
"webpack-merge": "5.8.0"
}
}