-
Notifications
You must be signed in to change notification settings - Fork 13
/
Copy pathpackage.json
76 lines (76 loc) · 2.41 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
{
"name": "react-redux-spinner",
"version": "3.0.0",
"description": "A spinner and loading bar for any long running tasks. For react with redux",
"main": "lib/index.js",
"module": "esm/index.js",
"scripts": {
"example:run": "webpack-dev-server --config example/webpack.config.babel.js --mode=development",
"example:build": "webpack-cli --config example/webpack.config.babel.js --mode=production",
"lint": "eslint src example test",
"mocha": "mocha --require @babel/register",
"test": "yarn mocha && yarn lint",
"build": "yarn build:esm && yarn build:commonjs && yarn build:umd",
"build:esm": "BABEL_ENV=esm babel src --out-dir esm",
"build:commonjs": "BABEL_ENV=commonjs babel src --out-dir lib",
"build:umd": "webpack-cli --config webpack.config.babel.js --mode=production",
"prepublishOnly": "yarn build"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Storytel/react-redux-spinner.git"
},
"keywords": [
"react",
"redux",
"spinner",
"loadingbar",
"ajax"
],
"author": "Alexander Olsson <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/Storytel/react-redux-spinner/issues"
},
"homepage": "https://github.com/Storytel/react-redux-spinner#readme",
"dependencies": {
"@types/nprogress": "^0.0.29",
"nprogress": "^0.2.0",
"prop-types": "^15.6.2"
},
"peerDependencies": {
"react": "^0.14.0 || ^15.0.0 || ^16.0.0",
"react-dom": "^0.14 || ^15.0.0 || ^16.0.0",
"react-redux": "*",
"redux": "^3.0.0 || ^4.0.0"
},
"devDependencies": {
"@babel/cli": "^7.2.3",
"@babel/core": "^7.2.2",
"@babel/preset-env": "^7.2.3",
"@babel/preset-react": "^7.0.0",
"@babel/register": "^7.0.0",
"@types/react": "^16.7.18",
"babel-eslint": "^10.0.1",
"babel-loader": "^8.0.4",
"css-loader": "^2.1.0",
"eslint": "^5.11.1",
"eslint-config-storytel": "^5.0.0",
"eslint-plugin-react": "^7.5.1",
"expect.js": "^0.3.1",
"file-loader": "^3.0.1",
"html-webpack-plugin": "^3.2.0",
"mini-css-extract-plugin": "^0.5.0",
"mocha": "^5.2.0",
"optimize-css-assets-webpack-plugin": "^5.0.1",
"react": "^16.1.1",
"react-dom": "^16.1.1",
"react-redux": "^7.1.1",
"redux": "^4.0.0",
"style-loader": "^0.23.1",
"webpack": "^4.28.3",
"webpack-cli": "^3.2.0",
"webpack-dev-server": "^3.1.14"
},
"types": "index.d.ts"
}