-
-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
55 lines (55 loc) · 1.68 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
{
"name": "scrolltosmooth",
"sideEffects": false,
"version": "3.0.2",
"description": "Lightweight Vanilla JS Smooth Scroll animation library.",
"main": "dist/scrolltosmooth.cjs.js",
"module": "dist/scrolltosmooth.esm.js",
"browser": "dist/scrolltosmooth.pkgd.min.js",
"types": "@types/scrolltosmooth.d.ts",
"scripts": {
"lint": "eslint . --ext .ts",
"build:types": "tsc --emitDeclarationOnly",
"build:js": "rollup -c",
"build": "npm run build:types && npm run build:js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/bfiessinger/scrollToSmooth.git"
},
"keywords": [
"smooth",
"scrolling",
"anchor",
"smooth scrolling",
"animated scrolling",
"scroll animations",
"anchor scrolling",
"scroll behavior"
],
"author": "Bastian Fießinger",
"license": "MIT",
"bugs": {
"url": "https://github.com/bfiessinger/scrollToSmooth/issues"
},
"homepage": "https://github.com/bfiessinger/scrollToSmooth#readme",
"devDependencies": {
"@babel/core": "^7.13.8",
"@babel/plugin-proposal-class-properties": "^7.13.0",
"@babel/plugin-proposal-object-rest-spread": "^7.13.8",
"@babel/preset-env": "^7.13.9",
"@babel/preset-typescript": "^7.13.0",
"@rollup/plugin-babel": "^5.3.0",
"@rollup/plugin-commonjs": "^17.1.0",
"@rollup/plugin-node-resolve": "^11.2.0",
"@rollup/plugin-typescript": "^8.2.0",
"@types/defaults": "^1.0.3",
"@typescript-eslint/eslint-plugin": "^4.16.1",
"@typescript-eslint/parser": "^4.16.1",
"babel-plugin-add-module-exports": "^1.0.4",
"eslint": "^7.21.0",
"rollup": "^2.40.0",
"rollup-plugin-terser": "^7.0.2",
"typescript": "^4.2.3"
}
}