-
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
63 lines (63 loc) · 1.48 KB
/
package.json
File metadata and controls
63 lines (63 loc) · 1.48 KB
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
{
"name": "@three11/infinite-scroll",
"version": "2.0.1",
"description": "Infinite scroll: Load more items as you scroll down",
"keywords": [
"Load more",
"AJAX Loading",
"Infinite scroll",
"Loading on scroll"
],
"homepage": "https://github.com/three11/infinite-scroll#readme",
"bugs": {
"url": "https://github.com/three11/infinite-scroll/issues"
},
"license": "GPL-3.0",
"authors": [
{
"name": "Three 11 Ltd",
"email": "hello@three-11.com",
"role": "Developer"
},
{
"name": "Alexander Panayotov",
"email": "alexander.panayotov@gmail.com",
"role": "Developer"
},
{
"name": "Atanas Atanasov",
"email": "scriptex.bg@gmail.com",
"role": "Developer"
}
],
"main": "dist/infinite-scroll.js",
"types": "dist/infinite-scroll.d.ts",
"repository": {
"type": "git",
"url": "github:three11/infinite-scroll"
},
"scripts": {
"lint": "eslint 'src/**/*.ts'",
"copy": "cp -r dist demo",
"clean": "rm -rf dist && rm -rf demo/dist",
"build": "yarn clean && rollup -c && yarn copy"
},
"dependencies": {
"@three11/debounce": "1.1.0"
},
"peerDependencies": {
"@three11/debounce": "^1"
},
"devDependencies": {
"@rollup/plugin-commonjs": "26.0.3",
"@rollup/plugin-node-resolve": "15.3.1",
"@rollup/plugin-typescript": "11.1.6",
"@typescript-eslint/eslint-plugin": "7.18.0",
"@typescript-eslint/parser": "7.18.0",
"eslint": "8.57.1",
"eslint-config-prettier": "9.1.2",
"rollup": "4.60.1",
"tslib": "2.8.1",
"typescript": "5.9.3"
}
}