-
Notifications
You must be signed in to change notification settings - Fork 25
/
package.json
66 lines (66 loc) · 1.88 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
{
"name": "sticky-sidebar-v2",
"description": "A JavaScript plugin for making smart and high performance sticky sidebars.",
"version": "1.1.1",
"author": "Øystein Blixhavn",
"email": "[email protected]",
"license": "The MIT License (MIT)",
"homepage": "https://github.com/blixhavn/sticky-sidebar-v2",
"main": "./dist/sticky-sidebar.js",
"module": "./src/sticky-sidebar.js",
"keywords": [
"sticky",
"affix",
"fixed",
"sidebar",
"position",
"javascript",
"jquery"
],
"files": [
"dist",
"src"
],
"bugs": {
"url": "https://github.com/blixhavn/sticky-sidebar-v2/issues"
},
"scripts": {
"build": "gulp",
"test": "mocha --require chai"
},
"repository": {
"type": "git",
"url": "https://github.com/blixhavn/sticky-sidebar-v2.git"
},
"devDependencies": {
"babel": "^6.23.0",
"@babel/core": "^7.15.5",
"babel-plugin-check-es2015-constants": "^6.22.0",
"babel-plugin-transform-es2015-arrow-functions": "^6.22.0",
"babel-plugin-transform-es2015-block-scoped-functions": "^6.22.0",
"babel-plugin-transform-es2015-block-scoping": "^6.24.1",
"babel-plugin-transform-es2015-classes": "^6.24.1",
"babel-plugin-transform-es2015-parameters": "^6.24.1",
"babel-plugin-transform-export-extensions": "^6.22.0",
"babel-preset-env": "^1.7.0",
"babel-register": "^6.26.0",
"chai": "^4.3.4",
"gulp": "^4.0.2",
"gulp-babel": "^7.0.1",
"gulp-header": "^2.0.9",
"gulp-rename": "^2.0.0",
"gulp-rollup-2": "^1.3.1",
"gulp-sourcemaps": "^3.0.0",
"gulp-uglify": "^3.0.2",
"gulp-util": "^3.0.8",
"jquery": "^3.6.0",
"mocha": "^9.1.2",
"mock-raf": "^1.0.1",
"rollup": "^2.57.0",
"rollup-plugin-babel": "^4.4.0",
"rollup-plugin-commonjs": "^10.1.0",
"rollup-plugin-eslint": "^7.0.0",
"rollup-plugin-node-resolve": "^5.2.0",
"sinon": "^11.1.2"
}
}