-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
49 lines (49 loc) · 1.36 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
{
"name": "@fxp/jquery-scroller",
"version": "1.0.2",
"license": "MIT",
"author": "François Pluchino <francois.pluchino@gmail.com>",
"contributors": [],
"description": "A custom scrollbar for desktop browser",
"keywords": [
"scroller",
"scroll",
"bar",
"desktop",
"jquery"
],
"homepage": "https://github.com/fxpio/fxp-jquery-scroller",
"repository": {
"type": "git",
"url": "https://github.com/fxpio/fxp-jquery-scroller.git"
},
"bugs": {
"url": "https://github.com/fxpio/fxp-jquery-scroller/issues"
},
"scripts": {
"dev": "encore dev",
"serve": "encore dev-server --port 9000",
"build:style": "sass --no-source-map scss/scroller.scss dist/scroller.css",
"build:module": "rollup -c",
"build": "yarn run build:module && yarn run build:style"
},
"engines": {},
"main": "js/scroller.js",
"dependencies": {
"@fxp/jquery-pluginify": "github:fxpio/fxp-jquery-pluginify#semver:^1.0.0",
"jquery": "^2.2.0||^3.2.0"
},
"devDependencies": {
"@symfony/webpack-encore": "^1.1.0",
"file-loader": "^6.0.0",
"less": "^3.9.0",
"less-loader": "^4.1.0",
"rollup": "^1.1.2",
"rollup-plugin-babel": "^4.3.2",
"rollup-plugin-commonjs": "^9.2.0",
"rollup-plugin-node-resolve": "^4.0.0",
"rollup-plugin-uglify": "^6.0.2",
"sass": "^1.32.7",
"sass-loader": "^11.0.1"
}
}