forked from daylilyfield/svrollbar
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
57 lines (57 loc) · 1.52 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
{
"name": "svrollbar",
"version": "0.10.4",
"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.13.8",
"@babel/eslint-parser": "^7.13.10",
"@babel/preset-env": "^7.13.10",
"@testing-library/jest-dom": "^5.11.9",
"@testing-library/svelte": "^3.0.3",
"babel-jest": "^26.6.3",
"eslint": "^7.20.0",
"eslint-config-prettier": "^8.1.0",
"eslint-plugin-jest": "^24.2.1",
"jest": "^26.6.3",
"jest-transform-svelte": "^2.1.1",
"prettier": "^2.2.1",
"prettier-plugin-svelte": "^2.1.6",
"rollup": "^2.40.0",
"rollup-plugin-svelte": "^7.1.0",
"sveld": "^0.7.1",
"svelte": "^3.34.0",
"svelte-check": "^1.2.1"
},
"keywords": [
"svelte",
"custom",
"scrollbar",
"component"
],
"files": [
"src",
"lib",
"types"
]
}