This repository has been archived by the owner on Sep 10, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
99 lines (99 loc) · 3.1 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
90
91
92
93
94
95
96
97
98
99
{
"name": "react-image-preload",
"version": "1.0.0",
"description": "Preload images",
"main": "./dist/index.js",
"dependencies": {
"classnames": "^2.2.5",
"prop-types": "^15.5.10",
"react": "^16.0.0",
"react-addons-css-transition-group": "^15.5.2",
"react-dom": "^16.0.0",
"react-router": "^3.0.5"
},
"devDependencies": {
"autoprefixer": "^6.7.7",
"babel": "^6.23.0",
"babel-cli": "^6.24.1",
"babel-core": "^6.25.0",
"babel-eslint": "^7.2.3",
"babel-loader": "^6.4.1",
"babel-preset-es2015": "^6.24.1",
"babel-preset-react": "^6.24.1",
"babel-preset-stage-2": "^6.24.1",
"chai": "^4.1.2",
"clean-webpack-plugin": "^0.1.16",
"compression-webpack-plugin": "^0.4.0",
"copy-webpack-plugin": "^4.0.1",
"cross-env": "^1.0.8",
"css-loader": "^0.23.1",
"enzyme": "^3.3.0",
"enzyme-adapter-react-16": "^1.1.1",
"eslint": "^3.19.0",
"eslint-config-standard": "^10.2.1",
"eslint-config-standard-react": "^5.0.0",
"eslint-plugin-import": "^2.7.0",
"eslint-plugin-node": "^5.1.0",
"eslint-plugin-promise": "^3.5.0",
"eslint-plugin-react": "^7.1.0",
"eslint-plugin-standard": "^3.0.1",
"extract-text-webpack-plugin": "^1.0.1",
"file-loader": "^0.8.5",
"gh-pages": "^1.1.0",
"happypack": "^3.1.0",
"html-webpack-plugin": "^2.28.0",
"jsdom": "^11.10.0",
"jsdom-global": "^3.0.2",
"lodash": "^4.17.4",
"mocha": "^5.1.1",
"mochawesome": "^3.0.2",
"nyc": "^11.7.1",
"open-browser-webpack-plugin": "^0.0.1",
"os": "^0.1.1",
"postcss-atroot": "^0.1.3",
"postcss-conditionals": "^2.1.0",
"postcss-custom-media": "^5.0.1",
"postcss-each": "^0.9.3",
"postcss-extend": "^1.0.5",
"postcss-for": "^2.1.1",
"postcss-import": "^8.2.0",
"postcss-loader": "^0.8.2",
"postcss-mixins": "^4.0.2",
"postcss-nested": "^1.0.1",
"postcss-simple-vars": "^2.0.0",
"postcss-sprites": "^3.3.0",
"raw-loader": "^0.5.1",
"style-loader": "^0.13.2",
"uglify-loader": "^1.4.0",
"url-loader": "^0.5.8",
"webpack": "^1.15.0",
"webpack-dev-server": "^1.16.5"
},
"scripts": {
"start": "cross-env NODE_ENV=development webpack-dev-server --progress --colors",
"lint": "eslint --fix --ext .js example",
"dll": "webpack --config ./webpack.dll.config.babel.js",
"build": "cross-env NODE_ENV=production webpack --progress --colors",
"dist": "babel src/ --out-dir dist/",
"test": "mocha --compilers js:babel-core/register --recursive",
"test:watch": "npm run test -- --watch",
"test:reporter": "npm run test -- --reporter mochawesome",
"test:coverage": "nyc --require babel-core/register mocha && nyc report --reporter=lcov",
"ghpages": "gh-pages -d ./build/demo"
},
"repository": {
"type": "git",
"url": "git+https://github.com/skyvow/react-image.git"
},
"keywords": [
"react",
"react-component",
"preload-images"
],
"author": "skyvow",
"license": "MIT",
"bugs": {
"url": "https://github.com/skyvow/react-image/issues"
},
"homepage": "https://github.com/skyvow/react-image#readme"
}