forked from Splidejs/react-splide
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
57 lines (57 loc) · 1.48 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": "@splidejs/react-splide",
"version": "0.6.17",
"description": "The React component for Splide.",
"author": "Naotoshi Fujita",
"license": "MIT",
"main": "dist/js/react-splide.cjs.js",
"module": "dist/js/react-splide.esm.js",
"types": "dist/types/index.d.ts",
"keywords": [
"splide",
"slider",
"carousel",
"slideshow",
"lightweight",
"touch",
"responsive",
"react"
],
"repository": {
"type": "git",
"url": "https://github.com/Splidejs/react-splide.git"
},
"bugs": {
"url": "https://github.com/Splidejs/react-splide/issues"
},
"dependencies": {
"@splidejs/splide": "^3.6.9"
},
"devDependencies": {
"@types/jest": "^27.0.3",
"@types/react": "^17.0.36",
"@types/react-dom": "^17.0.11",
"@typescript-eslint/eslint-plugin": "^5.4.0",
"@typescript-eslint/parser": "^5.4.0",
"babel-jest": "^27.3.1",
"chokidar": "^3.5.2",
"esbuild": "^0.13.15",
"eslint": "^8.3.0",
"gh-pages": "^3.2.3",
"jest": "^27.3.1",
"react": "^17.0.2",
"react-dom": "^17.0.2",
"ts-jest": "^27.0.7",
"tslib": "^2.3.1",
"typescript": "^4.5.2"
},
"scripts": {
"develop": "node ./scripts/develop.js",
"build:module": "node ./scripts/build-module.js",
"build:types": "node scripts/clean.js && tsc --emitDeclarationOnly",
"build:all": "npm run build:module && npm run build:types",
"test": "jest",
"eslint": "eslint src",
"deploy": "gh-pages -d examples/dist"
}
}