This repository has been archived by the owner on Dec 8, 2020. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 5
/
package.json
85 lines (85 loc) · 2.77 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
{
"name": "react-lazy-progressive-image",
"version": "1.5.5",
"description": "Load low resolution/ placeholder image first and then load the actual image lazily when it's in the viewport.",
"main": "lib/index.js",
"engines": {
"node": ">=6.0.0"
},
"files": [
".github",
"lib",
"src"
],
"scripts": {
"predev": "rimraf dist",
"docz-build": "docz build",
"docz-dev": "docz dev",
"dev": "parcel demo/index.html",
"prebuild": "rimraf lib",
"pretty": "prettier --write '{__tests__,src}/*.js'",
"build": "BABEL_ENV=production babel src --out-dir lib",
"integration:server": "node example/runServer",
"test:integration": "jest -c .jest.integration.json --detectOpenHandles --forceExit",
"lint": "eslint {__tests__,src}/*.js",
"test:only": "jest -c .jest.main.json",
"test:main:watch": "jest -c .jest.main.json --watch",
"test:watch": "npm run test:main:watch",
"pretest:only": "npm run build",
"test": "npm run lint && npm run test:only && npm run test:integration"
},
"repository": {
"type": "git",
"url": "git+https://github.com/imbhargav5/react-lazy-progressive-image.git"
},
"author": "Bhargav Ponnapalli <bhargavponnapalli.5@gmail.com> (https://github.com/imbhargav5)",
"license": "MIT",
"bugs": {
"url": "https://github.com/imbhargav5/react-lazy-progressive-image/issues"
},
"homepage": "https://github.com/imbhargav5/react-lazy-progressive-image#readme",
"devDependencies": {
"@babel/cli": "7.1.2",
"@babel/core": "7.7.2",
"@babel/node": "7.0.0",
"@babel/plugin-proposal-class-properties": "7.1.0",
"@babel/plugin-syntax-class-properties": "7.0.0",
"@babel/plugin-syntax-object-rest-spread": "7.0.0",
"@babel/preset-env": "7.1.0",
"@babel/preset-react": "7.0.0",
"@babel/register": "7.0.0",
"babel-core": "^7.0.0-bridge.0",
"babel-eslint": "^10.0.3",
"babel-preset-minify": "^0.5.0-alpha.a24dd066",
"docz": "^0.2.5",
"enzyme": "3.3.0",
"enzyme-adapter-react-16": "^1.6.0",
"eslint": "^4.19.1",
"eslint-config-prettier": "6.7.0",
"eslint-plugin-babel": "4.1.2",
"eslint-plugin-filenames": "1.3.2",
"eslint-plugin-prettier": "2.5.0",
"eslint-plugin-react": "7.16.0",
"express": "4.16.4",
"jest": "^23.1.0",
"jest-environment-node": "23.4.0",
"jest-puppeteer": "3.4.0",
"np": "5.0.3",
"parcel-bundler": "1.12.3",
"prettier": "1.19.1",
"prop-types": "^15.6.1",
"puppeteer": "1.9.0",
"react": "^16.12.0",
"react-dom": "^16.12.0",
"rimraf": "2.6.2",
"styled-components": "^4.1.3",
"webpack": "^4.12.0",
"webpack-dev-server": "3.9.0"
},
"dependencies": {
"react-visibility-sensor": "^5.1.1"
},
"peerDependencies": {
"react": "^0.14.9 || ^15.3.0 || ^16.0.0"
}
}