-
Notifications
You must be signed in to change notification settings - Fork 27
/
package.json
91 lines (91 loc) · 2.54 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
78
79
80
81
82
83
84
85
86
87
88
89
90
91
{
"name": "react-instagram-zoom-slider",
"version": "1.4.0",
"description": "A slider with pinch to zoom capabilities inspired by Instagram",
"author": "Sean Kozer",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/skozer/react-instagram-zoom-slider.git"
},
"main": "dist/index.js",
"module": "dist/index.es.js",
"jsnext:main": "dist/index.es.js",
"sideEffects": false,
"engines": {
"node": ">=8",
"npm": ">=5"
},
"scripts": {
"test": "jest",
"test:watch": "jest --watch",
"build": "rollup -c",
"start": "rollup -c -w",
"prepare": "yarn run build",
"predeploy": "cd example && yarn install && rimraf dist && yarn run build",
"deploy": "gh-pages -d example/dist",
"semantic-release": "semantic-release"
},
"peerDependencies": {
"prop-types": "^15.7.2",
"react": "^16.12.0",
"react-dom": "^16.12.0",
"react-spring": "^8.0.27",
"react-use-gesture": "^7.0.4",
"styled-components": "^5.0.1"
},
"dependencies": {},
"devDependencies": {
"@babel/core": "^7.8.4",
"@babel/preset-env": "^7.8.4",
"@babel/preset-react": "^7.8.3",
"@rollup/plugin-commonjs": "^11.0.2",
"@rollup/plugin-node-resolve": "^7.1.1",
"@rollup/plugin-url": "^4.0.2",
"@semantic-release/changelog": "^5.0.0",
"@semantic-release/git": "^9.0.0",
"@svgr/rollup": "^5.1.0",
"babel-eslint": "^10.0.3",
"babel-jest": "^25.1.0",
"cross-env": "^7.0.0",
"eslint": "^6.8.0",
"eslint-config-airbnb": "^18.0.1",
"eslint-config-prettier": "^6.10.0",
"eslint-plugin-import": "^2.13.0",
"eslint-plugin-jsx-a11y": "^6.2.3",
"eslint-plugin-node": "^11.0.0",
"eslint-plugin-prettier": "^3.1.2",
"eslint-plugin-promise": "^4.0.0",
"eslint-plugin-react": "^7.10.0",
"eslint-plugin-react-hooks": "^2.4.0",
"gh-pages": "^2.2.0",
"jest": "^25.1.0",
"react": "^16.12.0",
"react-dom": "^16.12.0",
"react-spring": "^8.0.27",
"react-use-gesture": "^7.0.4",
"rollup": "^1.31.1",
"rollup-plugin-babel": "^4.3.3",
"rollup-plugin-peer-deps-external": "^2.2.0",
"rollup-plugin-postcss": "^2.0.6",
"semantic-release": "^17.0.4",
"styled-components": "^5.0.1"
},
"files": [
"dist"
],
"bugs": {
"url": "https://github.com/skozer/react-instagram-zoom-slider/issues"
},
"homepage": "https://skozer.github.io/react-instagram-zoom-slider/",
"keywords": [
"instagram",
"zoom",
"pinch",
"slider",
"carousel",
"react",
"animated",
"react-component"
]
}