-
Notifications
You must be signed in to change notification settings - Fork 7
/
package.json
57 lines (57 loc) · 1.7 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": "react-svg-pan-zoom-loader",
"version": "1.6.1",
"description": "This package allows us to load a SVG file remotely into react-svg-pan-zoom component.",
"main": "./build-commonjs/index.js",
"module": "./build-es/index.js",
"scripts": {
"start": "run-p storybook:start",
"storybook:start": "start-storybook -p 6006 -s ./stories/public",
"build-commonjs": "cross-env babel src --out-dir build-commonjs",
"build-es": "cross-env KEEP_MODULES=true babel src --out-dir build-es",
"build": "npm-run-all clean build-commonjs build-es",
"clean": "del build-*",
"build-storybook": "build-storybook -s ./stories/public",
"prepare": "npm run build"
},
"repository": {
"type": "git",
"url": "git+https://github.com/chrvadala/react-svg-pan-zoom-loader.git"
},
"author": "nufaylr",
"contributors": [
"chrvadala"
],
"license": "MIT",
"bugs": {
"url": "https://github.com/chrvadala/react-svg-pan-zoom-loader/issues"
},
"homepage": "https://github.com/chrvadala/react-svg-pan-zoom-loader#readme",
"keywords": [
"react-svg-pan-zoom",
"svg-file",
"reactjs svg file"
],
"dependencies": {
"react-svg-pan-zoom": "^3.1.0",
"react-svgmt": "^2.0.2"
},
"devDependencies": {
"@babel/cli": "^7.4.4",
"@babel/core": "^7.4.5",
"@babel/runtime": "^7.4.5",
"@storybook/addon-actions": "^5.1.3",
"@storybook/addon-knobs": "^5.1.3",
"@storybook/addons": "^5.1.3",
"@storybook/react": "^5.1.3",
"babel-loader": "^8.0.6",
"cross-env": "^5.2.0",
"del-cli": "^2.0.0",
"npm-run-all": "^4.1.3",
"react-markdown": "^4.0.8"
},
"peerDependencies": {
"prop-types": "^15.6.2",
"react": ">=16.0.0"
}
}