forked from ilyashubin/scrollbooster
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
41 lines (41 loc) · 1.04 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
{
"name": "scrollbooster",
"description": "Enjoyable content drag-to-scroll library",
"version": "3.0.2",
"author": "Ilya Shubin <[email protected]>",
"license": "MIT",
"main": "dist/scrollbooster.min.js",
"module": "src/index.js",
"scripts": {
"dev": "webpack --mode development --watch",
"build": "webpack --mode production",
"start": "webpack-dev-server --host 0.0.0.0"
},
"browserslist": [
"> 0.25%",
"not dead"
],
"repository": {
"type": "git",
"url": "git+https://github.com/ilyashubin/scrollbooster.git"
},
"keywords": [
"drag",
"draggable",
"scroll",
"scrollable",
"UI",
"microlibrary"
],
"homepage": "https://ilyashubin.github.io/scrollbooster",
"devDependencies": {
"@babel/core": "^7.10.2",
"@babel/plugin-proposal-object-rest-spread": "^7.10.1",
"@babel/preset-env": "^7.10.2",
"babel-loader": "^8.1.0",
"babel-plugin-add-module-exports": "^1.0.2",
"webpack": "^4.43.0",
"webpack-cli": "^3.3.10",
"webpack-dev-server": "^3.11.0"
}
}