-
-
Notifications
You must be signed in to change notification settings - Fork 11
/
package.json
65 lines (65 loc) · 1.78 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
60
61
62
63
64
65
{
"name": "svelte-infinite-loading",
"version": "1.4.0",
"description": "An infinite scroll component for Svelte apps",
"svelte": "src/index.js",
"main": "dist/svelte-infinite-loading.js",
"module": "dist/svelte-infinite-loading.mjs",
"types": "types/index.d.ts",
"scripts": {
"build": "rollup -c",
"lint": "eslint src/** test/**",
"test": "jest test",
"test:watch": "npm run test -- --watch",
"prepublishOnly": "npm run lint && npm run test && npm run build"
},
"devDependencies": {
"@rollup/plugin-node-resolve": "^11.0.0",
"@testing-library/jest-dom": "^5.11.6",
"@testing-library/svelte": "^3.0.0",
"eslint": "^7.15.0",
"eslint-plugin-svelte3": "^2.7.3",
"jest": "^26.6.3",
"rollup": "^2.34.2",
"rollup-plugin-svelte": "^7.0.0",
"svelte": "^3.31.0",
"svelte-jester": "^1.3.0"
},
"packageManager": "[email protected]+sha512.c21f77b91733829ec70e73cc88b5dc0a4bf685a81d252d3327d293ff7d5dd05a173f4dbeaa037600ec29696f397f14569229e5dab10b7cfc3e0a30575b8f3f8d",
"files": [
"src",
"dist",
"types"
],
"exports": {
".": {
"types": "./types/index.d.ts",
"svelte": "./src/index.js",
"default": "./dist/svelte-infinite-loading.js"
}
},
"keywords": [
"svelte",
"infinite",
"loading",
"scroll",
"component",
"plugin",
"spinner",
"svelte-components"
],
"author": {
"name": "Jonas Geiler",
"email": "[email protected]",
"url": "https://jonasgeiler.com"
},
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/jonasgeiler/svelte-infinite-loading.git"
},
"bugs": {
"url": "https://github.com/jonasgeiler/svelte-infinite-loading/issues"
},
"homepage": "https://github.com/jonasgeiler/svelte-infinite-loading"
}