-
Notifications
You must be signed in to change notification settings - Fork 12
/
package.json
executable file
·43 lines (43 loc) · 1.11 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
{
"name": "react-progressive-loader",
"version": "0.4.3",
"description": "Utility to load images and React components progressively, and get code splitting for free",
"repository": "https://github.com/yosbelms/react-progressive-loader.git",
"main": "lib/index.js",
"license": "MIT",
"files": [
"./lib/"
],
"scripts": {
"test": "jest",
"build": "tsc --project tsconfig.build.json --sourceMap",
"watch": "tsc --project tsconfig.build.json --sourceMap --watch",
"clean": "rm -rf ./lib/",
"prepublish": "npm run clean && npm run build"
},
"devDependencies": {
"@jest/globals": "^29.7.0",
"@testing-library/jest-dom": "^6.6.3",
"@testing-library/react": "^16.0.1",
"@types/jest": "^29.5.14",
"@types/react-dom": "^18.3.1",
"jest": "^29.7.0",
"jest-environment-jsdom": "^29.7.0",
"react": "^18.3.1",
"react-dom": "^18.3.1",
"ts-jest": "^29.2.5",
"typescript": "^5.7.2"
},
"keywords": [
"react",
"reactjs",
"img",
"lazy load",
"progressive",
"medium",
"loadable"
],
"dependencies": {
"react-deco": "^0.13.0"
}
}