-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
74 lines (74 loc) · 1.85 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
{
"name": "react-lazy-media",
"version": "0.3.1",
"description": "Lazy load image, picture, video, and iframe media React components",
"main": "lib/index.js",
"scripts": {
"lib": "npm run clean && babel src -d lib --ignore src/**/*.story.js",
"clean": "rm -rf lib && mkdir lib",
"pretty": "pretty-quick",
"prepublish": "npm run lib",
"storybook": "start-storybook -p 6006",
"test": "jest",
"updateSnapshot": "jest --updateSnapshot"
},
"files": [
"lib"
],
"repository": {
"type": "git",
"url": "git+https://github.com/smrubin/react-lazy-media.git"
},
"author": "Sam Rubin <smrubin>",
"license": "MIT",
"keywords": [
"react",
"lazyload",
"lazy",
"load",
"image",
"video",
"picture",
"webp"
],
"bugs": {
"url": "https://github.com/smrubin/react-lazy-media/issues"
},
"homepage": "https://github.com/smrubin/react-lazy-media#readme",
"dependencies": {
"classnames": "^2.2.6",
"intersection-observer": "^0.7.0",
"prop-types": "^15.7.2",
"yall-js": "^3.1.5"
},
"peerDependencies": {
"react": ">=16.0.0",
"react-dom": ">=16.0.0"
},
"devDependencies": {
"@babel/cli": "^7.5.5",
"@babel/core": "^7.5.5",
"@babel/plugin-proposal-class-properties": "^7.5.5",
"@babel/preset-env": "^7.5.5",
"@babel/preset-react": "^7.0.0",
"@storybook/addon-centered": "^5.1.9",
"@storybook/addon-knobs": "^5.1.9",
"@storybook/react": "^5.1.9",
"babel-jest": "^24.8.0",
"babel-loader": "^8.0.6",
"husky": "^3.0.2",
"identity-obj-proxy": "^3.0.0",
"jest": "^24.8.0",
"jest-junit": "^7.0.0",
"prettier": "^1.18.2",
"pretty-quick": "^1.11.1",
"react": "^16.8.6",
"react-dom": "^16.8.6",
"react-test-renderer": "^16.8.6"
},
"husky": {
"hooks": {
"pre-commit": "pretty-quick --staged"
}
}
}