-
-
Notifications
You must be signed in to change notification settings - Fork 26
/
package.json
57 lines (57 loc) · 1.7 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
{
"name": "material-scrolltop",
"version": "2.0.1",
"description": "Lightweight, Material Design inspired plugin for scrolling on top of the html page (with jQuery)",
"main": "./dist/material-scrolltop.js",
"types": "./dist/material-scrolltop.d.ts",
"files": [
"dist"
],
"author": "Lukas Bartak <[email protected]> (https://github.com/bartholomej)",
"homepage": "https://github.com/bartholomej/material-scrolltop",
"license": "MIT",
"scripts": {
"start": "yarn build --watch",
"build": "yarn delete:dist & yarn copy & yarn build:scss & yarn tsc",
"tsc": "tsc",
"delete:dist": "rm -rf dist/* ",
"copy": "rsync -r ./src/icons ./dist/",
"build:scss": "node-sass src -o dist",
"version": "",
"postversion": "git push && git push --follow-tags",
"release:patch": "git checkout master && npm version patch -m \"chore(update): patch release %s 🐛 \"",
"release:minor": "git checkout master && npm version minor -m \"chore(update): release %s 🚀\"",
"release:major": "git checkout master && npm version major -m \"chore(update): major release %s 💥 \""
},
"repository": {
"url": "git+https://github.com/bartholomej/material-scrolltop.git",
"type": "git"
},
"bugs": {
"url": "https://github.com/bartholomej/material-scrolltop/issues"
},
"keywords": [
"material",
"material design",
"ripple",
"button",
"animate",
"jquery",
"scrollTop",
"scroll to top",
"sass",
"typescript"
],
"peerDependencies": {
"jquery": ">=1.7"
},
"devDependencies": {
"@types/jquery": "^3.5.6",
"node-sass": "^6.0.1",
"typescript": "^4.3.5"
},
"engines": {
"yarn": ">= 1.0.0",
"node": ">=10"
}
}