-
-
Notifications
You must be signed in to change notification settings - Fork 22
/
package.json
37 lines (37 loc) · 1.05 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
{
"name": "simple-scrollspy",
"version": "2.5.3",
"description": "Simple scrollspy javascript without jQuery, no dependencies.",
"main": "dist/index.js",
"scripts": {
"dev": "webpack --mode production --watch --progress",
"build": "tsc && webpack --mode production --progress",
"prerelease": "npm run build && git add . && git commit -m 'release: Update /dist folder' || true",
"release": "standard-version"
},
"repository": {
"url": "https://github.com/kimyvgy/simple-scrollspy"
},
"keywords": [
"scroll",
"scrollspy",
"menuspy"
],
"author": "Nguyen Huu Kim <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/kimyvgy/simple-scrollspy/issues"
},
"homepage": "https://kimyvgy.github.io/simple-scrollspy/demo",
"devDependencies": {
"standard-version": "^9.1.1",
"terser-webpack-plugin": "^5.3.6",
"ts-loader": "^9.5.1",
"typescript": "^5.3.3",
"webpack": "^5.76.0",
"webpack-cli": "^5.0.0"
},
"optionalDependencies": {
"jump.js": "^1.0.2"
}
}