-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
55 lines (55 loc) · 1.39 KB
/
package.json
File metadata and controls
55 lines (55 loc) · 1.39 KB
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
{
"name": "react-zoomable-elements",
"version": "0.0.7",
"description": "Zoom or pan any element",
"main": "dist/index.js",
"module": "dist/index.esm.js",
"types": "dist/index.d.ts",
"files": [
"dist"
],
"scripts": {
"build": "npm-run-all clean build:js",
"build:js": "rollup -c",
"clean": "rimraf dist",
"format": "prettier --write 'src/**/*' 'demo/src/**/*'",
"prepare": "npm-run-all clean build",
"start": "npm-run-all --parallel start:js",
"start:js": "rollup -c -w",
"test": "jest --config jest.config.json --coverage"
},
"repository": {
"type": "git",
"url": "git+https://github.com/CambrianTech/react-zoomable.git"
},
"keywords": [
"Zoom",
"Pan"
],
"author": "Cambrian",
"license": "MIT",
"bugs": {
"url": "https://github.com/CambrianTech/react-zoomable/issues"
},
"homepage": "https://github.com/CambrianTech/react-zoomable#readme",
"dependencies": {
"react-client-info": "^0.0.21"
},
"devDependencies": {
"react": "^16.9",
"react-dom": "^16.9",
"@types/react": "^16.9",
"@types/react-dom": "^16.9",
"npm-run-all": "^4.1.5",
"rimraf": "^3.0.0",
"rollup": "^1.24.0",
"rollup-plugin-typescript2": "^0.24.3",
"typescript": "^3.6.4"
},
"peerDependencies": {
"react": "^16.9",
"react-dom": "^16.9",
"@types/react": "^16.9",
"@types/react-dom": "^16.9"
}
}