-
Notifications
You must be signed in to change notification settings - Fork 14
/
Copy pathpackage.json
49 lines (49 loc) · 1.21 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
{
"name": "react-viewerjs",
"version": "0.1.8",
"description": "React wrapper for viewerjs",
"keywords": [
"image preview",
"react-viewerjs",
"基于viewerjs的react版本图片预览",
"react"
],
"files": [
"src",
"lib"
],
"homepage": "https://github.com/xiabingwu/react-viewerjs",
"author": "[email protected]",
"repository": {
"type": "git",
"url": "git+https://github.com/xiabingwu/react-viewerjs.git"
},
"bugs": {
"url": "https://github.com/xiabingwu/react-viewerjs/issues"
},
"licenses": "MIT",
"main": "./lib/index",
"scripts": {
"clean": "rimraf ./lib && mkdir lib",
"lib": "npm run clean && babel src --out-dir lib && ncp lib ./examples/src/react-viewerjs"
},
"dependencies": {
"prop-types": "^15.5.8",
"react": "^16.3.2",
"react-dom": "^16.3.2",
"viewerjs": "^1.0.0-rc.1"
},
"directories": {
"examples": "examples"
},
"license": "MIT",
"devDependencies": {
"babel-cli": "^6.26.0",
"babel-plugin-transform-class-properties": "^6.24.1",
"babel-plugin-transform-object-rest-spread": "^6.26.0",
"babel-preset-env": "^1.6.1",
"babel-preset-react": "^6.24.1",
"ncp": "^2.0.0",
"rimraf": "^2.6.2"
}
}