-
-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
63 lines (63 loc) · 1.9 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
{
"name": "@splidejs/splide-extension-intersection",
"version": "0.2.0",
"description": "The Splide extension for observing the intersection of the slider with the viewport.",
"author": "Naotoshi Fujita",
"license": "MIT",
"main": "dist/js/splide-extension-intersection.cjs.js",
"module": "dist/js/splide-extension-intersection.esm.js",
"jsdelivr": "dist/js/splide-extension-intersection.min.js",
"types": "dist/types/index.d.ts",
"keywords": [
"splide",
"slider",
"carousel",
"slideshow",
"lightweight",
"touch",
"responsive",
"intersection observer"
],
"repository": {
"type": "git",
"url": "https://github.com/Splidejs/splide-extension-intersection.git"
},
"bugs": {
"url": "https://github.com/Splidejs/splide-extension-intersection/issues"
},
"devDependencies": {
"@babel/core": "^7.17.8",
"@babel/preset-env": "^7.16.11",
"@rollup/plugin-babel": "^5.3.1",
"@rollup/plugin-node-resolve": "^13.1.3",
"@splidejs/splide": "^4.0.0",
"@splidejs/splide-extension-auto-scroll": "^0.3.7",
"@splidejs/splide-extension-video": "^0.6.8",
"@types/jest": "^27.4.1",
"@typescript-eslint/eslint-plugin": "^5.17.0",
"@typescript-eslint/parser": "^5.17.0",
"babel-jest": "^27.5.1",
"babel-loader": "^8.2.4",
"chokidar": "^3.5.3",
"esbuild": "^0.14.31",
"eslint": "^8.12.0",
"jest": "^27.5.1",
"rollup": "^2.70.1",
"rollup-plugin-esbuild": "4.8.2",
"ts-jest": "^27.1.4",
"tslib": "^2.3.1",
"typescript": "^4.6.3"
},
"scripts": {
"develop": "node scripts/develop.js",
"build:js": "node scripts/build-script.js",
"build:module": "node scripts/build-module.js",
"build:all": "npm run build:js && npm run build:module && tsc --emitDeclarationOnly",
"check": "tsc --noEmit",
"jest": "jest --clearCache && jest",
"eslint": "eslint src"
},
"files": [
"dist"
]
}