forked from FormidableLabs/react-progressive-image
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
68 lines (68 loc) · 2.19 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
{
"name": "react-progressive-image",
"version": "0.6.0",
"description": "Progressive image loading for React",
"main": "dist.js",
"typings": "src/index.d.ts",
"scripts": {
"build": "babel src/index.js --out-file dist.js",
"umd": "webpack --config webpack.config.umd.js",
"lint": "eslint {__tests__,src}/*.js",
"flow": "flow",
"test:only": "jest",
"test": "npm run lint && npm run flow && npm run test:only",
"prepublish": "npm run pretty && npm run test && npm run build && npm run umd",
"demo": "webpack-dev-server --inline --hot --config demo/webpack.config.js --content-base demo/",
"pretty": "prettier --write '{__tests__,src}/*.js'"
},
"keywords": [
"react",
"progressive",
"images",
"loading"
],
"repository": "https://github.com/FormidableLabs/react-progressive-image.git",
"author": "Brandon Dail <[email protected]>",
"license": "MIT",
"devDependencies": {
"@babel/cli": "^7.0.0",
"@babel/core": "^7.0.1",
"@babel/plugin-proposal-class-properties": "^7.0.0",
"@babel/plugin-proposal-object-rest-spread": "^7.0.0",
"@babel/preset-env": "^7.0.0",
"@babel/preset-flow": "^7.0.0",
"@babel/preset-react": "^7.0.0",
"babel-core": "^7.0.0-0",
"babel-eslint": "^9.0.0",
"babel-jest": "^23.6.0",
"babel-loader": "^8.0.2",
"enzyme": "^3.6.0",
"enzyme-adapter-react-16": "^1.5.0",
"eslint": "^5.6.0",
"eslint-config-formidable": "^4.0.0",
"eslint-config-prettier": "^3.0.1",
"eslint-plugin-babel": "^5.2.0",
"eslint-plugin-filenames": "^1.3.2",
"eslint-plugin-flowtype": "^2.50.0",
"eslint-plugin-import": "^2.14.0",
"eslint-plugin-prettier": "^2.6.2",
"eslint-plugin-react": "^7.11.1",
"flow-bin": "^0.81.0",
"jest": "^23.6.0",
"prettier": "^1.14.2",
"raf": "^3.4.0",
"react": "^16.5.1",
"react-dom": "^16.5.1",
"react-test-renderer": "^16.5.1",
"uglifyjs-webpack-plugin": "^2.0.0",
"webpack": "^4.19.0",
"webpack-cli": "^3.1.0",
"webpack-dev-server": "^3.1.8"
},
"peerDependencies": {
"react": "^15.0.0-0 || ^16.0.0-0",
"react-dom": "^15.0.0-0 || ^16.0.0-0"
},
"sideEffects": false,
"dependencies": {}
}