-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
72 lines (72 loc) · 2.39 KB
/
package.json
File metadata and controls
72 lines (72 loc) · 2.39 KB
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
{
"name": "asyncdataloader-react",
"version": "1.1.0",
"description": "AsyncDataLoader is a Higher Order Component which takes responsibility of fetching data of the Wrapped Component and offers many options like showing an interface preview of the Wrapped Component while data is being fetched, refetch data after specified time",
"main": "./lib/index.js",
"scripts": {
"build": "npm run build:lib && npm run build:npm && npm run build:min",
"build:lib": "babel src --out-dir lib && cp assets/* lib/",
"build:npm": "NODE_ENV=development webpack src/index.js dist/asyncdataloader-react.js",
"build:min": "NODE_ENV=production webpack src/index.js dist/asyncdataloader-react.min.js",
"test": "mocha --compilers js:babel-register --recursive 'src/__test__/*'",
"test:coverage": "npm run build:lib && istanbul cover _mocha -- recursive 'lib/__test__/*'",
"test:lint": "eslint src",
"show:coverage": "open coverage/lcov-report/index.html",
"clean": "rimraf lib coverage dist"
},
"dependencies": {
"react": "^15.3.0",
"react-redux": "^4.4.5",
"redux": "^3.5.2",
"react-router": "2.8.1",
"redux-actions": "0.12.0"
},
"keywords": [
"react",
"component",
"loader",
"react-component",
"spinner",
"data-loader",
"preview",
"loader",
"loading",
"fetch",
"retry",
"async",
"loading"
],
"devDependencies": {
"babel": "^6.5.2",
"babel-cli": "^6.11.4",
"babel-core": "^6.13.2",
"babel-eslint": "^6.1.2",
"babel-loader": "^6.2.4",
"babel-preset-es2015": "^6.13.2",
"babel-preset-react": "^6.11.1",
"babel-preset-stage-0": "^6.5.0",
"babel-register": "^6.11.6",
"deep-freeze": "0.0.1",
"eslint": "^3.2.2",
"eslint-config-airbnb": "^10.0.0",
"eslint-plugin-import": "^1.12.0",
"eslint-plugin-jsx-a11y": "^2.0.1",
"eslint-plugin-react": "^6.0.0",
"expect": "^1.20.2",
"istanbul": "^0.4.4",
"mocha": "^3.0.1",
"rimraf": "^2.5.4",
"url-loader": "^0.5.8",
"webpack": "^1.13.1"
},
"author": "Harshit Kumar (https://github.com/harshitkumar31)",
"license": "ISC",
"repository": {
"type": "git",
"url": "git+https://github.com/harshitkumar31/react-asyncdataloader.git"
},
"bugs": {
"url": "https://github.com/harshitkumar31/react-asyncdataloader/issues"
},
"homepage": "https://github.com/harshitkumar31/react-asyncdataloader#readme"
}