-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
34 lines (34 loc) · 953 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
{
"name": "rescroller",
"version": "2024.7.7",
"author": "David Watkins",
"description": "Decorate your scrollbars.",
"homepage": "https://github.com/davidofwatkins/rescroller#readme",
"main": "index.js",
"license": "ISC",
"repository": {
"type": "git",
"url": "git+https://github.com/davidofwatkins/rescroller.git"
},
"bugs": {
"url": "https://github.com/davidofwatkins/rescroller/issues"
},
"engines": {
"node": "18.12.1",
"npm": "8.19.2"
},
"scripts": {
"build:extension": "zip -r build/extension.zip ./ -x './build/*' -x './node_modules/*' -x './.git/*'",
"lint": "eslint .",
"lint:fix": "eslint . --fix",
"format:check": "prettier --list-different .",
"format": "prettier --write ."
},
"devDependencies": {
"@types/chrome": "0.0.203",
"eslint": "8.20.0",
"eslint-config-airbnb-base": "15.0.0",
"eslint-config-prettier": "8.5.0",
"prettier": "3.3.2"
}
}