-
Notifications
You must be signed in to change notification settings - Fork 39
/
Copy pathpackage.json
100 lines (100 loc) · 2.98 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
92
93
94
95
96
97
98
99
100
{
"name": "react-images-viewer",
"version": "1.7.1",
"description": "Create an react-images-viewer component.",
"main": "lib/ImgsViewer.js",
"jsnext:main": "dist/react-images-viewer.es.js",
"scripts": {
"build": "nps build",
"publish:examples": "NODE_ENV=production nps publish",
"start": "webpack-dev-server --progress",
"lint": "eslint src/** examples/src/app.js examples/src/components/Gallery.js",
"test": "jest",
"coverage": "jest --coverage && cat ./coverage/lcov.info | ./node_modules/coveralls/bin/coveralls.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/guonanci/react-images-viewer.git"
},
"keywords": [
"react",
"react-component",
"react images",
"react-images",
"react-images-viewer",
"lightbox",
"react lightbox",
"react-lightbox",
"carousel",
"react-carousel",
"react carousel",
"gallery",
"react-gallery",
"react gallery",
"react-photo",
"react-photo-viewer"
],
"author": "yiminanci <[email protected]> (https://juejin.cn/user/3491704660305111)",
"license": "MIT",
"responsitory": {
"type": "git",
"url": "https://github.com/guonanci/react-images-viewer.git"
},
"bugs": {
"url": "https://github.com/guonanci/react-images-viewer/issues"
},
"homepage": "https://github.com/guonanci/react-images-viewer#readme",
"devDependencies": {
"babel": "^6.23.0",
"babel-cli": "^6.26.0",
"babel-core": "^6.26.3",
"babel-eslint": "^8.2.5",
"babel-jest": "^23.4.2",
"babel-loader": "^7.1.5",
"babel-plugin-external-helpers": "^6.22.0",
"babel-plugin-transform-object-assign": "^6.22.0",
"babel-plugin-transform-object-rest-spread": "^6.26.0",
"babel-plugin-transform-react-remove-prop-types": "^0.4.13",
"babel-preset-env": "^1.7.0",
"babel-preset-react": "^6.24.1",
"coveralls": "^3.0.2",
"css-loader": "^1.0.0",
"enzyme": "^3.3.0",
"enzyme-adapter-react-16": "^1.15.6",
"eslint": "^5.1.0",
"eslint-plugin-react": "^7.10.0",
"html-loader": "^0.5.5",
"html-webpack-plugin": "^3.2.0",
"jest": "^23.4.2",
"jest-cli": "^23.4.2",
"less": "^3.5.3",
"less-loader": "^4.1.0",
"mini-css-extract-plugin": "^0.4.1",
"nps": "^5.9.2",
"nps-utils": "^1.6.0",
"react": "^17.0.2",
"react-dom": "^17.0.2",
"react-test-renderer": "^16.4.1",
"regenerator-runtime": "^0.12.0",
"rollup": "^0.62.0",
"rollup-plugin-babel": "^3.0.7",
"rollup-plugin-commonjs": "^9.1.3",
"rollup-plugin-node-resolve": "^3.3.0",
"rollup-plugin-uglify": "^4.0.0",
"style-loader": "^0.21.0",
"uglify-es": "^3.3.9",
"webpack": "^4.16.2",
"webpack-cli": "^3.1.0",
"webpack-dev-server": "^3.1.5"
},
"peerDependencies": {
"react": "^15.0 || ^16.0 || ^17.0",
"react-dom": "^15.0 || ^16.0 || ^17.0"
},
"dependencies": {
"aphrodite": "^2.2.2",
"prop-types": "^15.6.2",
"react-scrolllock": "^3.0.1",
"react-transition-group": "^2.4.0"
}
}