-
Notifications
You must be signed in to change notification settings - Fork 4
/
package.json
61 lines (61 loc) · 1.6 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
58
59
60
61
{
"name": "@tjoskar/react-lazyload-img",
"public": true,
"description": "Lazy image loader for react",
"version": "1.2.3",
"scripts": {
"test": "jest",
"prepublishOnly": "tsc --module commonjs --target es2015 --outDir dist/cjs && tsc --module es2015 --target es2015 --outDir dist/es2015",
"start": "parcel example/index.html"
},
"author": "tjoskar <[email protected]>",
"bugs": {
"url": "https://github.com/tjoskar/react-lazyload-img/issues",
"email": "[email protected]"
},
"dependencies": {},
"devDependencies": {
"@types/jest": "^26.0.0",
"@types/react": "^16.9.2",
"@types/react-dom": "^16.9.0",
"jest": "^26.0.0",
"parcel-bundler": "^1.12.3",
"react": "^16.9.0",
"react-dom": "^16.9.0",
"simple-spy": "^3.0.1",
"ts-jest": "^27.0.0",
"typescript": "^4.0.0"
},
"peerDependencies": {
"react": ">=15.0.0",
"react-dom": ">=15.0.0"
},
"homepage": "https://github.com/tjoskar/react-lazyload-img",
"keywords": [
"react",
"lazyload",
"image"
],
"license": "MIT",
"main": "./dist/cjs/index.js",
"module": "./dist/es2015/index.js",
"types": "./dist/es2015/index.d.ts",
"repository": {
"type": "git",
"url": "https://github.com/tjoskar/react-lazyload-img"
},
"jest": {
"transform": {
"^.+\\.ts$": "<rootDir>/node_modules/ts-jest/preprocessor.js"
},
"testRegex": "src/.*\\.(test|spec)\\.(ts|tsx|js)$",
"testEnvironment": "node",
"moduleFileExtensions": [
"ts",
"js",
"json"
],
"coverageDirectory": "./coverage/",
"collectCoverage": true
}
}