This repository has been archived by the owner on Dec 6, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 93
/
package.json
89 lines (89 loc) · 2.89 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
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
{
"name": "react-redux-loading-bar",
"version": "5.0.8",
"description": "Simple Loading Bar for Redux and React",
"main": "build/index.js",
"typings": "index.d.ts",
"scripts": {
"build": "babel src -d build",
"build:watch": "npm run build -- --watch",
"lint": "eslint src/ spec/",
"test": "mocha --require @babel/register --exit spec/",
"test:watch": "npm run test -- --watch",
"test:coverage": "nyc mocha --require @babel/register --exit spec/ && nyc report --reporter=lcov",
"pkgfiles": "pkgfiles"
},
"repository": {
"type": "git",
"url": "mironov/react-redux-loading-bar"
},
"keywords": [
"react",
"redux",
"loading",
"loading-bar",
"progress",
"progress-bar",
"react-component"
],
"author": "Anton Mironov ([email protected])",
"license": "MIT",
"bugs": {
"url": "https://github.com/mironov/react-redux-loading-bar/issues"
},
"homepage": "https://github.com/mironov/react-redux-loading-bar",
"peerDependencies": {
"react": "^0.14.0 || ^15.0.0 || ^16.0.0 || ^17.0.0 || ^18.0.0",
"react-dom": "^0.14.0 || ^15.0.0 || ^16.0.0 || ^17.0.0 || ^18.0.0",
"react-redux": "^3.0.0 || ^4.0.0 || ^5.0.0 || ^6.0.0 || ^7.0.0 || ^8.0.0 || ^9.0.0",
"redux": "^3.0.0 || ^4.0.0 || ^5.0.0"
},
"devDependencies": {
"@babel/cli": "^7.10.5",
"@babel/core": "^7.11.0",
"@babel/plugin-proposal-class-properties": "^7.10.4",
"@babel/plugin-proposal-decorators": "^7.10.5",
"@babel/plugin-proposal-export-namespace-from": "^7.10.4",
"@babel/plugin-proposal-function-sent": "^7.10.4",
"@babel/plugin-proposal-json-strings": "^7.10.4",
"@babel/plugin-proposal-numeric-separator": "^7.10.4",
"@babel/plugin-proposal-throw-expressions": "^7.10.4",
"@babel/plugin-syntax-dynamic-import": "^7.8.3",
"@babel/plugin-syntax-import-meta": "^7.10.4",
"@babel/preset-env": "^7.11.0",
"@babel/preset-react": "^7.10.4",
"@babel/register": "^7.10.5",
"@types/react": "^16.9.44",
"@wojtekmaj/enzyme-adapter-react-17": "^0.8.0",
"ajv": "^6.12.3",
"babel-eslint": "^7.1.1",
"bufferutil": "^4.0.1",
"enzyme": "3.8.0",
"eslint": "^7.6.0",
"eslint-config-airbnb": "^18.2.0",
"eslint-config-airbnb-base": "^14.2.0",
"eslint-plugin-import": "^2.22.0",
"eslint-plugin-jsx-a11y": "^6.3.1",
"eslint-plugin-react": "^7.20.5",
"eslint-plugin-react-hooks": "^4.0.8",
"expect": "^1.18.0",
"expect-jsx": "^5.0.0",
"immutable": "^3.8.2",
"jsdom": "^20.0.3",
"lolex": "^1.4.0",
"mocha": "^10.1.0",
"mocha-lcov-reporter": "^1.3.0",
"nyc": "^15.1.0",
"pkgfiles": "^2.3.0",
"react": "^17.0.2",
"react-dom": "^17.0.2",
"react-redux": "^8.0.5",
"react-test-renderer": "^17.0.2",
"redux": "^4.0.5",
"utf-8-validate": "^5.0.2"
},
"dependencies": {
"prop-types": "^15.7.2",
"react-lifecycles-compat": "^3.0.4"
}
}