-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
41 lines (41 loc) · 906 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
37
38
39
40
41
{
"name": "better-window-scroll",
"version": "1.0.2",
"description": "",
"main": "dist/index.js",
"module": "dist/index.esm.min.js",
"files": [
"dist"
],
"scripts": {
"build": "rollup -c rollup.config.js",
"prepublishOnly": "yarn build"
},
"repository": {
"type": "git",
"url": "git+https://github.com/sqshada/better-window-scroll.git"
},
"author": "",
"dependencies": {
"@rollup/plugin-commonjs": "^11.0.1",
"@rollup/plugin-typescript": "^8.2.5",
"rollup": "^1.29.0",
"tslib": "^2.3.1",
"typescript": "^4.4.3"
},
"homepage": "https://github.com/sqshada/better-window-scroll#readme",
"lint-staged": {
"*.js": [
"eslint --fix",
"prettier --write"
],
"*.ts": [
"eslint --fix",
"prettier --write"
],
"*.less": [
"stylelint **/packages/*.less --fix",
"prettier --write"
]
}
}