forked from mironov/react-redux-loading-bar
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
77 lines (77 loc) · 2.35 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
{
"name": "react-redux-loading-bar",
"version": "4.0.5",
"description": "Simple Loading Bar for Redux and React",
"main": "build/index.js",
"typings": "index.d.ts",
"scripts": {
"build": "`npm bin`/babel src -d build",
"build:watch": "npm run build -- --watch",
"lint": "`npm bin`/eslint src/ spec/",
"test": "`npm bin`/mocha --compilers js:babel-core/register spec/",
"test:watch": "npm run test -- --watch",
"test:coverage": "`npm bin`/istanbul cover -x 'spec/**' `npm bin`/_mocha -- -u exports --compilers js:babel-register spec/",
"test:coveralls": "npm run test:coverage && node ./node_modules/coveralls/bin/coveralls.js < coverage/lcov.info",
"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",
"react-dom": "^0.14.0 || ^15.0.0 || ^16.0.0",
"react-redux": "^3.0.0 || ^4.0.0 || ^5.0.0",
"redux": "^3.0.0 || ^4.0.0"
},
"devDependencies": {
"@types/react": "^0.14.55 || ^15.0.0",
"babel-cli": "^6.7.7",
"babel-core": "^6.7.7",
"babel-eslint": "^7.1.1",
"babel-preset-es2015": "^6.6.0",
"babel-preset-react": "^6.5.0",
"babel-preset-stage-2": "^6.24.1",
"coveralls": "^3.0.1",
"enzyme": "^3.0.0",
"enzyme-adapter-react-15": "^1.0.0",
"enzyme-adapter-react-16": "^1.0.0",
"eslint": "^3.19.0",
"eslint-config-airbnb": "^14.1.0",
"eslint-plugin-import": "^2.2.0",
"eslint-plugin-jsx-a11y": "^4.0.0",
"eslint-plugin-react": "^6.10.3",
"expect": "^1.18.0",
"expect-jsx": "^3.0.0",
"immutable": "^3.8.2",
"istanbul": "^1.0.0-alpha.2",
"jsdom": "^11.10.0",
"lolex": "^1.4.0",
"mocha": "^3.2.0",
"pkgfiles": "^2.3.0",
"react": "^16.0.0",
"react-dom": "^16.0.0",
"react-redux": "^5.0.4",
"react-test-renderer": "^16.0.0",
"redux": "^3.5.2"
},
"dependencies": {
"prop-types": "^15.5.6",
"react-lifecycles-compat": "^3.0.2"
}
}