-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
61 lines (61 loc) · 1.76 KB
/
package.json
File metadata and controls
61 lines (61 loc) · 1.76 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
{
"name": "react-img-preloader",
"version": "2.1.1",
"description": "making images preloading dead-simple, additionally, offering both the total count of images aimed for preloading and the count of those have been preloaded, to ease the work if anyone fancy to show a running progress bar. ",
"main": "dist/index.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"babel": "cross-env NODE_ENV=production babel ./src/App.js -o ./dist/index.js",
"storybook": "start-storybook -p 6006",
"build-storybook": "build-storybook"
},
"repository": {
"type": "git",
"url": "git+https://github.com/littlee/react-img-preloader.git"
},
"keywords": [
"react",
"image",
"preload",
"progress-bar"
],
"author": "littlee <usedlittlee@icloud.com>",
"license": "MIT",
"bugs": {
"url": "https://github.com/littlee/react-img-preloader/issues"
},
"homepage": "https://github.com/littlee/react-img-preloader#readme",
"devDependencies": {
"babel-cli": "^6.26.0",
"babel-core": "^6.26.3",
"babel-eslint": "^7.2.3",
"babel-preset-react-app": "^3.1.2",
"cross-env": "^5.2.0",
"eslint": "^4.19.1",
"eslint-config-react-app": "^2.1.0",
"eslint-plugin-flowtype": "^2.50.0",
"eslint-plugin-import": "^2.14.0",
"eslint-plugin-jsx-a11y": "^5.1.1",
"eslint-plugin-react": "^7.11.1",
"@storybook/react": "^3.4.10",
"@storybook/addon-actions": "^3.4.10",
"@storybook/addon-links": "^3.4.10",
"@storybook/addons": "^3.4.10",
"babel-runtime": "^6.26.0"
},
"eslintConfig": {
"extends": "react-app"
},
"eslintIgnore": [
"dist/"
],
"babel": {
"presets": [
"react-app"
]
},
"dependencies": {
"react": "^16.4.2",
"react-dom": "^16.4.2"
}
}