This repository has been archived by the owner on Sep 7, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
68 lines (68 loc) · 2.01 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
{
"name": "sticky-header",
"version": "2.0.5",
"description": "Vanilla JavaScript module to create a header that sticks to the top of the page while you scroll.",
"main": "dist/index.js",
"dependencies": {
"auto-bind": "^3.0.0",
"lodash": "^4.17.4"
},
"devDependencies": {
"@babel/core": "^7.6.2",
"@babel/plugin-proposal-class-properties": "^7.5.5",
"@babel/plugin-transform-runtime": "^7.6.2",
"@babel/preset-env": "^7.6.2",
"@babel/runtime": "^7.6.2",
"babel-eslint": "^10.0.3",
"babel-loader": "^8.0.6",
"clean-webpack-plugin": "^3.0.0",
"core-js": "^3.2.1",
"css-loader": "^3.2.0",
"cssnano-preset-advanced": "^4.0.7",
"eslint": "^6.5.1",
"eslint-config-prettier": "^6.4.0",
"eslint-config-standard": "^14.1.0",
"eslint-loader": "^3.0.2",
"eslint-plugin-babel": "^5.3.0",
"eslint-plugin-prettier": "^3.1.1",
"mini-css-extract-plugin": "^0.8.0",
"node-sass": "^4.5.3",
"optimize-css-assets-webpack-plugin": "^5.0.3",
"postcss-loader": "^3.0.0",
"postcss-safe-parser": "^4.0.1",
"prettier": "^1.18.2",
"sass-loader": "^8.0.0",
"style-loader": "^1.0.0",
"stylelint": "^11.0.0",
"stylelint-config-prettier": "^6.0.0",
"stylelint-config-rational-order": "^0.1.2",
"stylelint-config-standard": "^19.0.0",
"stylelint-scss": "^3.11.1",
"stylelint-webpack-plugin": "^1.0.2",
"terser-webpack-plugin": "^2.1.2",
"webpack": "^4.41.0",
"webpack-cli": "^3.3.9"
},
"repository": {
"type": "git",
"url": "git+https://github.com/jedlikowski/sticky-header.git"
},
"keywords": [
"sticky",
"fixed",
"header",
"sticky-header",
"fixed-header"
],
"author": "Jakub Jedlikowski <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/jedlikowski/sticky-header/issues"
},
"homepage": "https://github.com/jedlikowski/sticky-header",
"scripts": {
"start": "webpack --watch-stdin",
"build": "webpack",
"prod": "webpack -p"
}
}