-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
36 lines (36 loc) · 962 Bytes
/
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
{
"name": "sozo-scrollspy",
"version": "1.0.0",
"description": "A lightweight ScrollSpy library for smooth scrolling animations",
"main": "dist/scrollspy.min.js",
"module": "src/scrollspy.js",
"style": "dist/scrollspy.min.css",
"files": [
"dist",
"src",
"demo.html"
],
"scripts": {
"build": "webpack --mode production",
"test": "echo \"Running tests...\" && exit 0",
"prepublishOnly": "npm run build && npm test"
},
"repository": {
"type": "git",
"url": "https://github.com/sozo-design/scrollspy.git"
},
"keywords": [
"scrollspy",
"animation",
"intersection-observer"
],
"author": "Darshan Gada",
"license": "MIT",
"devDependencies": {
"webpack": "^5.75.0",
"webpack-cli": "^4.10.0",
"css-loader": "^6.7.3",
"mini-css-extract-plugin": "^2.7.2",
"css-minimizer-webpack-plugin": "^4.2.2"
}
}