-
Notifications
You must be signed in to change notification settings - Fork 17
Expand file tree
/
Copy pathpackage.json
More file actions
42 lines (42 loc) · 1008 Bytes
/
package.json
File metadata and controls
42 lines (42 loc) · 1008 Bytes
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
{
"name": "react-lazyimg-component",
"version": "1.0.1",
"description": "a react component with typescript for lazy loading image",
"main": "lib/Lazyimg.js",
"files": [
"src/**",
"lib/**"
],
"peerDependencies": {
"react": ">=16.8.0"
},
"dependencies": {
"intersection-observer": "^0.12.0"
},
"devDependencies": {
"@types/react": "^17.0.0",
"@types/styled-components": "^5.1.7",
"react": "^17.0.1",
"typescript": "^4.1.3"
},
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"start": "tsc -w",
"build": "tsc"
},
"repository": {
"type": "git",
"url": "git+https://github.com/zhansingsong/react-lazyimg-component.git"
},
"keywords": [
"react",
"typescript",
"lazyimg"
],
"author": "zhansingsong",
"license": "MIT",
"bugs": {
"url": "https://github.com/zhansingsong/react-lazyimg-component/issues"
},
"homepage": "https://github.com/zhansingsong/react-lazyimg-component#readme"
}