forked from nygardk/react-share
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
96 lines (96 loc) · 2.62 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
{
"name": "react-share",
"version": "4.1.0",
"description": "Social media share buttons and share counts for React.",
"main": "./lib/index.js",
"types": "./lib/index.d.ts",
"module": "./es/index.js",
"sideEffects": false,
"engines": {
"node": ">=6.9.0",
"npm": ">=5.0.0"
},
"files": [
"lib/**/*",
"es/**/*"
],
"scripts": {
"build": "npm run lint && npm run build:commonjs && npm run build:es",
"build:commonjs": "rimraf ./lib && tsc -p . --outDir ./lib --module commonjs",
"build:es": "rimraf ./es && tsc -p . --outDir ./es --module es2015 --moduleResolution Node",
"build-demo": "rimraf ./docs && cross-env NODE_ENV=production webpack -p --config webpack.demo.config.js",
"run-demos": "webpack-dev-server --hot --config webpack.demo.config.js --progress",
"lint": "eslint --ext .js,.jsx,.ts,.tsx ./src ./demo",
"prepublishOnly": "npm run build",
"start": "npm run run-demos"
},
"keywords": [
"react",
"component",
"react-component",
"social",
"media",
"social-media",
"share",
"button",
"count"
],
"repository": {
"type": "git",
"url": "https://github.com/nygardk/react-share"
},
"author": {
"name": "Klaus Nygård",
"email": "[email protected]",
"url": "http://klausnygard.fi"
},
"contributors": [
{
"name": "Ari Autio",
"email": "[email protected]"
}
],
"license": "MIT",
"devDependencies": {
"@types/assert": "^1.4.6",
"@types/classnames": "^2.2.10",
"@types/jsonp": "^0.2.0",
"@types/react": "^16.9.23",
"@types/react-dom": "^16.9.5",
"@typescript-eslint/eslint-plugin": "^2.23.0",
"@typescript-eslint/parser": "^2.23.0",
"cross-env": "7.0.2",
"css-loader": "3.4.2",
"eslint": "6.8.0",
"eslint-config-prettier": "^6.10.0",
"eslint-loader": "3.0.3",
"eslint-plugin-babel": "^5.3.0",
"eslint-plugin-import": "2.20.1",
"eslint-plugin-jsx-a11y": "6.2.3",
"eslint-plugin-prettier": "^3.1.2",
"eslint-plugin-react": "7.19.0",
"eslint-plugin-react-hooks": "2.5.0",
"file-loader": "5.1.0",
"html-webpack-plugin": "3.2.0",
"prettier": "^1.19.1",
"react": "16.3.0",
"react-dom": "16.3.0",
"react-hot-loader": "4.12.20",
"rimraf": "^3.0.2",
"style-loader": "1.1.3",
"terser-webpack-plugin": "2.3.5",
"ts-loader": "^6.2.1",
"typescript": "3.8.3",
"url-loader": "3.0.0",
"webpack": "4.42.0",
"webpack-cli": "3.3.11",
"webpack-dev-server": "3.10.3"
},
"dependencies": {
"classnames": "^2.2.5",
"jsonp": "^0.2.1"
},
"peerDependencies": {
"react": "^16.3.0"
}
}