-
Notifications
You must be signed in to change notification settings - Fork 11
/
Copy pathpackage.json
59 lines (59 loc) · 1.59 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
{
"name": "svrollbar",
"version": "0.12.0",
"description": "simple custom scrollbar made by svelte",
"repository": {
"type": "git",
"url": "https://github.com/daylilyfield/svrollbar"
},
"homepage": "https://github.com/daylilyfield/svrollbar#readme",
"bugs": {
"url": "https://github.com/daylilyfield/svrollbar/issues"
},
"author": "daylilyfield",
"license": "MIT",
"main": "lib/index.js",
"module": "lib/index.mjs",
"svelte": "src/index.js",
"types": "types/index.d.ts",
"scripts": {
"lint": "prettier --check ./src && eslint ./src --ext .js,.jsx,.ts,.tsx && svelte-check --ignore example",
"test": "jest",
"test:inspect": "node --inspect-brk node_modules/.bin/jest --runInBand",
"build": "rollup -c",
"prepublishOnly": "npm run build"
},
"devDependencies": {
"@babel/core": "^7.17.5",
"@babel/eslint-parser": "^7.17.0",
"@babel/preset-env": "^7.16.11",
"@testing-library/dom": "^7.31.2",
"@testing-library/jest-dom": "^5.16.2",
"@testing-library/svelte": "^3.0.3",
"babel-jest": "^27.5.1",
"eslint": "^8.11.0",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-jest": "^26.1.1",
"eslint-plugin-svelte3": "^3.4.1",
"jest": "^27.4.7",
"prettier": "^2.5.1",
"prettier-plugin-svelte": "^2.6.0",
"rollup": "^2.70.1",
"rollup-plugin-svelte": "^7.1.0",
"sveld": "^0.13.4",
"svelte": "^3.46.4",
"svelte-check": "^2.4.5",
"svelte-jester": "^2.3.2"
},
"keywords": [
"svelte",
"custom",
"scrollbar",
"component"
],
"files": [
"src",
"lib",
"types"
]
}