-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathpackage.json
More file actions
46 lines (46 loc) · 1.17 KB
/
package.json
File metadata and controls
46 lines (46 loc) · 1.17 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
{
"name": "load-image-react",
"version": "1.0.2",
"description": "Use blueimp-load-image in React",
"main": "bin/index.js",
"typings": "bin/index.d.ts",
"scripts": {
"prepublishOnly": "npm run review && npm run build",
"build": "tsc",
"lint": "tslint -c tslint.json \"./src/**.*.{ts,tsx}\"",
"review": "npm run lint"
},
"files": [
"bin/"
],
"keywords": [
"react",
"image",
"load",
"canvas"
],
"license": "MIT",
"author": "NewOrbit Ltd",
"repository": {
"type": "git",
"url": "git+https://github.com/NewOrbit/load-image-react.git"
},
"bugs": {
"url": "https://github.com/NewOrbit/load-image-react/issues"
},
"homepage": "https://github.com/NewOrbit/load-image-react#readme",
"dependencies": {
"blueimp-load-image": "^2.20.1"
},
"devDependencies": {
"@types/react": "^16.8.7",
"neworbit-tslint-config": "^2.0.0",
"react": "^16.8.4",
"tslint": "^6.1.1",
"typescript": "^3.7.4"
},
"peerDependencies": {
"@types/react": "^16.x",
"react": "16.x"
}
}