-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
111 lines (111 loc) · 2.29 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
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
{
"name": "smoothscroll-anchor-polyfill",
"version": "1.3.4",
"description": "Apply smooth scroll to anchor links to replicate CSS scroll-behavior",
"main": "dist/index.js",
"unpkg": "dist/index.min.js",
"module": "dist/index.mjs",
"files": [
"dist/*",
"src/*",
"!dist/.gitkeep"
],
"packageManager": "[email protected]",
"browserslist": [
"last 2 versions",
"> 1%",
"ie > 8",
"not dead"
],
"scripts": {
"test": "jest --verbose",
"build": "rollup --config",
"prepack": "yarn build"
},
"repository": {
"type": "git",
"url": "git+https://github.com/jonaskuske/smoothscroll-anchor-polyfill.git"
},
"keywords": [
"smoothscroll",
"scrollbehavior",
"scroll-behavior",
"scroll",
"polyfill",
"hashchange",
"anchor",
"link",
"smooth"
],
"author": "Jonas Kuske",
"license": "MIT",
"bugs": {
"url": "https://github.com/jonaskuske/smoothscroll-anchor-polyfill/issues"
},
"homepage": "https://jonaskuske.github.io/smoothscroll-anchor-polyfill",
"devDependencies": {
"@babel/core": "^7.16.0",
"@babel/preset-env": "^7.16.0",
"@rollup/plugin-babel": "^5.3.0",
"babel-jest": "^27.3.1",
"eslint": "^8.2.0",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-prettier": "^4.0.0",
"jest": "^27.3.1",
"prettier": "^2.4.1",
"rollup": "^2.60.0",
"rollup-plugin-filesize": "^9.1.1",
"rollup-plugin-terser": "^7.0.2"
},
"babel": {
"moduleId": "SmoothscrollAnchorPolyfill",
"env": {
"production": {
"presets": [
[
"@babel/preset-env",
{
"modules": "umd"
}
]
]
},
"test": {
"presets": [
[
"@babel/preset-env"
]
]
}
}
},
"eslintConfig": {
"root": true,
"extends": [
"eslint:recommended",
"plugin:prettier/recommended"
],
"env": {
"browser": true
},
"parserOptions": {
"sourceType": "module",
"ecmaVersion": 2021
},
"rules": {
"no-empty": "off"
}
},
"eslintIgnore": [
"dist",
".yarn",
".pnp.cjs",
".pnp.loader.mjs"
],
"prettier": {
"endOfLine": "auto",
"singleQuote": true,
"semi": false,
"printWidth": 100
}
}