forked from woutervh-/react-pan-and-zoom-hoc
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
53 lines (53 loc) · 1.78 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
{
"name": "react-pan-and-zoom-hoc",
"version": "1.4.0",
"description": "React HOC that helps with panning and zooming elements",
"main": "lib/panAndZoomHoc.js",
"module": "lib-esm/panAndZoomHoc.js",
"types": "lib/panAndZoomHoc.d.ts",
"scripts": {
"build": "run-s clean:es5 build:es5 clean:es6 build:es6",
"build:es5": "tsc",
"build:es6": "tsc -m es2015 --outDir lib-esm --declarationDir lib-esm",
"clean": "rimraf lib lib-esm node_modules",
"clean:es5": "rimraf lib",
"clean:es6": "rimraf lib-esm",
"examples": "webpack-dev-server --config webpack.config.development.babel.js --content-base dist/ --hot --inline --host 0.0.0.0 --port 8888",
"test": "echo \"Error: no test specified\" && exit 1"
},
"repository": {
"type": "git",
"url": "git+https://github.com/woutervh-/react-pan-and-zoom-hoc.git"
},
"author": "Wouter van Heeswijk",
"license": "MIT",
"bugs": {
"url": "https://github.com/woutervh-/react-pan-and-zoom-hoc/issues"
},
"homepage": "https://github.com/woutervh-/react-pan-and-zoom-hoc#readme",
"peerDependencies": {
"prop-types": "^15.6.0",
"react": "^15.4.0 || ^16.0.0",
"react-dom": "^15.4.0 || ^16.0.0"
},
"devDependencies": {
"@types/prop-types": "^15.5.5",
"@types/react": "^16.4.13",
"@types/react-dom": "^16.0.7",
"awesome-typescript-loader": "^3.2.3",
"babel-cli": "^6.18.0",
"babel-loader": "^6.2.7",
"babel-preset-es2015": "^6.18.0",
"babel-preset-react": "^6.16.0",
"babel-preset-stage-1": "^6.16.0",
"html-webpack-plugin": "^2.24.1",
"npm-run-all": "^4.1.1",
"prop-types": "^15.6.0",
"react": "^15.4.0",
"react-dom": "^15.4.0",
"rimraf": "^2.5.4",
"typescript": "^3.0.3",
"webpack": "^3.8.1",
"webpack-dev-server": "^2.9.2"
}
}