-
Notifications
You must be signed in to change notification settings - Fork 145
/
package.json
73 lines (73 loc) · 2.13 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
62
63
64
65
66
67
68
69
70
71
72
73
{
"name": "react-loader-spinner",
"version": "6.1.6",
"description": " react-spinner-loader provides simple React.js spinner component which can be implemented for async wait operation before data load to the view.",
"unpkg": "dist/main.js",
"jsdelivr": "dist/main.js",
"main": "dist/main.js",
"source": "src/index.ts",
"module": "dist/module.js",
"types": "dist/types.d.ts",
"author": {
"name": "Mohan Upadhyay",
"url": "https://mohanpd.com.np"
},
"license": "MIT",
"bugs": {
"url": "https://github.com/mhnpd/react-loader-spinner"
},
"homepage": "https://mhnpd.github.io/react-loader-spinner/",
"keywords": [
"react-component",
"loader",
"spinner",
"react"
],
"scripts": {
"build": "parcel build",
"watch": "parcel watch",
"typecheck": "tsc --noEmit --skipLibCheck",
"lint": "eslint ./src --ext .js,.jsx,.ts,.tsx",
"prettier": "prettier --write .",
"clean": "rimraf dist/",
"test": "jest --no-cache",
"start": "cd docs && npm run start"
},
"devDependencies": {
"@parcel/packager-ts": "^2.10.3",
"@parcel/transformer-typescript-types": "^2.10.3",
"@testing-library/jest-dom": "^6.1.5",
"@testing-library/react": "^14.1.2",
"@types/jest": "^29.5.11",
"@types/styled-components": "^5.1.34",
"@typescript-eslint/eslint-plugin": "^6.15.0",
"@typescript-eslint/parser": "^6.15.0",
"eslint": "^8.56.0",
"eslint-config-prettier": "^9.1.0",
"eslint-config-standard": "^17.1.0",
"eslint-plugin-import": "^2.29.1",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-promise": "^6.1.1",
"eslint-plugin-react": "^7.33.2",
"eslint-plugin-tree-shaking": "^1.12.0",
"jest": "^29.7.0",
"jest-environment-jsdom": "^29.7.0",
"parcel": "^2.10.3",
"prettier": "3.1.1",
"react": "18.2.0",
"react-dom": "18.2.0",
"ts-jest": "^29.1.1",
"typescript": "^5.3.3"
},
"peerDependencies": {
"react": "^16.0.0 || ^17.0.0 || ^18.0.0",
"react-dom": "^16.0.0 || ^17.0.0 || ^18.0.0"
},
"dependencies": {
"react-is": "^18.2.0",
"styled-components": "^6.1.2"
},
"engines": {
"node": ">= 12"
}
}