forked from davidjerleke/embla-carousel
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
77 lines (77 loc) · 2.19 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
66
67
68
69
70
71
72
73
74
75
76
77
{
"name": "embla-carousel",
"version": "4.0.6",
"private": false,
"author": "David Cetinkaya <[email protected]>",
"description": "The most fluid carousel library with unmatched swipe precision",
"keywords": [
"slider",
"carousel",
"slideshow",
"gallery",
"lightweight",
"touch",
"javascript",
"typescript",
"react"
],
"license": "MIT",
"main": "embla-carousel.umd.js",
"unpkg": "embla-carousel.umd.js",
"module": "embla-carousel.esm.js",
"types": "index.d.ts",
"sideEffects": false,
"repository": {
"type": "git",
"url": "git+https://github.com/davidcetinkaya/embla-carousel"
},
"bugs": {
"url": "https://github.com/davidcetinkaya/embla-carousel/issues"
},
"homepage": "https://davidcetinkaya.github.io/embla-carousel",
"files": [
"embla-carousel*",
"vanilla*",
"react*",
"index.d.ts"
],
"scripts": {
"build": "rollup -c",
"start": "rollup -c --watch",
"test": "jest --config jestconfig.json",
"lint": "eslint src/** --ext .js,.jsx,.ts,.tsx",
"format": "prettier --write \"src/**/*.ts\" \"src/**/*.js\"",
"prepare": "npm run build",
"prepublishOnly": "npm-run-all test lint",
"preversion": "npm run lint",
"version": "npm run format && git add -A src",
"postversion": "git push && git push --tags"
},
"devDependencies": {
"@babel/core": "^7.9.6",
"@babel/plugin-transform-object-assign": "^7.8.3",
"@babel/preset-env": "^7.9.6",
"@babel/preset-typescript": "^7.10.1",
"@rollup/plugin-babel": "^5.0.3",
"@rollup/plugin-node-resolve": "^8.0.1",
"@types/jest": "^24.9.1",
"@types/jest-diff": "^20.0.0",
"@types/react": "^16.9.38",
"@typescript-eslint/eslint-plugin": "^3.3.0",
"@typescript-eslint/parser": "^3.3.0",
"eslint": "^7.3.1",
"eslint-config-prettier": "^6.11.0",
"eslint-plugin-prettier": "^3.1.4",
"jest": "^24.9.0",
"npm-run-all": "^4.1.5",
"prettier": "^1.19.1",
"react": "^16.13.1",
"react-dom": "^16.13.1",
"rollup": "^2.18.0",
"rollup-plugin-terser": "^6.1.0",
"rollup-plugin-typescript2": "^0.27.1",
"ts-jest": "^23.10.5",
"typescript": "^3.9.3"
},
"dependencies": {}
}