-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
46 lines (46 loc) · 1.22 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
{
"name": "react-lazy-viewport",
"version": "1.0.3",
"description": "Load your component based on viewport.",
"source": "src/index.tsx",
"private": false,
"author": "adibfirman <[email protected]>",
"main": "dist/index.js",
"module": "dist/foo.m.js",
"types": "dist/index.d.ts",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/adibfirman/react-lazy-viewport.git"
},
"keywords": [
"react",
"reactjs",
"lazy"
],
"files": [
"dist",
"utils"
],
"scripts": {
"start": "microbundle watch --jsx React.createElement",
"build": "microbundle --jsx React.createElement",
"lint": "eslint -c .eslintrc ./src --fix",
"release": "git commit -am $npm_package_version && git tag $npm_package_version && git push && git push --tags && npm publish"
},
"devDependencies": {
"@typescript-eslint/eslint-plugin": "2.23.0",
"@typescript-eslint/parser": "2.23.0",
"eslint": "6.8.0",
"eslint-config-google": "0.14.0",
"eslint-plugin-react": "7.21.2",
"eslint-plugin-react-hooks": "2.5.0",
"microbundle": "0.12.3"
},
"peerDependencies": {
"react": "^16.11.0"
},
"dependencies": {
"@types/react": "16.9.46"
}
}