-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
40 lines (40 loc) · 1.1 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
{
"name": "poc-scrollbar",
"version": "1.5.0",
"description": "A simple scrollbar, that just works",
"homepage": "https://github.com/sateffen/poc-scrollbar",
"bugs": "https://github.com/sateffen/poc-scrollbar/issues",
"main": "dist/pocscrollbar.js",
"module": "src/pocscrollbar.js",
"jsnext:main": "src/pocscrollbar.js",
"browser": "src/pocscrollbar.js",
"types": "src/pocscrollbar.d.ts",
"scripts": {
"prepare": "yarn run build",
"build": "rollup -c",
"dev": "rollup -c --watch",
"lint": "eslint -c .eslintrc src test",
"test": "karma start karma.config.js --single-run",
"devtest": "karma start karma.config.js"
},
"keywords": [
"scrollbar",
"scroll",
"poc"
],
"repository": {
"type": "git",
"url": "https://github.com/sateffen/poc-scrollbar.git"
},
"license": "MIT",
"devDependencies": {
"eslint": "8.56.0",
"eslint-config-google": "0.14.0",
"jasmine-core": "5.1.1",
"karma": "6.4.2",
"karma-chrome-launcher": "3.2.0",
"karma-jasmine": "5.1.0",
"karma-rollup-preprocessor": "7.0.8",
"rollup": "4.9.1"
}
}