forked from nygardk/react-share
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
83 lines (83 loc) · 2.45 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
{
"name": "react-share",
"version": "2.3.2",
"description": "Social media share buttons and share counts for React.",
"main": "./lib/index.js",
"module": "./es/index.js",
"sideEffects": false,
"engines": {
"node": ">=6.9.0",
"npm": ">=5.0.0"
},
"scripts": {
"build": "npm run lint && npm run build:commonjs && npm run build:es && npm run build-demo",
"build:commonjs": "rimraf ./lib && cross-env BABEL_ENV=commonjs babel ./src --out-dir ./lib",
"build:es": "rimraf ./es && cross-env BABEL_ENV=es babel ./src --out-dir ./es",
"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 .jsx --ext .js ./src ./demos",
"prepublish": "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"
},
"license": "MIT",
"devDependencies": {
"babel-cli": "6.26.0",
"babel-core": "6.26.3",
"babel-eslint": "8.2.6",
"babel-loader": "7.1.5",
"babel-plugin-transform-class-properties": "6.24.1",
"babel-plugin-transform-object-rest-spread": "6.26.0",
"babel-plugin-transform-react-jsx": "^6.24.1",
"babel-plugin-transform-runtime": "6.23.0",
"babel-preset-env": "1.7.0",
"cross-env": "5.2.0",
"css-loader": "1.0.0",
"eslint": "4.19.1",
"eslint-config-airbnb": "17.1.0",
"eslint-loader": "2.1.0",
"eslint-plugin-import": "2.14.0",
"eslint-plugin-jsx-a11y": "6.1.1",
"eslint-plugin-react": "7.11.1",
"file-loader": "2.0.0",
"html-webpack-plugin": "3.2.0",
"react": "15.5.4",
"react-dom": "15.5.4",
"react-hot-loader": "4.3.5",
"rimraf": "^2.6.2",
"style-loader": "0.22.1",
"terser-webpack-plugin": "1.0.2",
"url-loader": "1.1.1",
"webpack": "4.17.1",
"webpack-cli": "^3.1.0",
"webpack-dev-server": "3.1.5"
},
"dependencies": {
"babel-runtime": "^6.6.1",
"classnames": "^2.2.5",
"jsonp": "^0.2.1",
"prop-types": "^15.5.8"
},
"peerDependencies": {
"react": "^0.13.0 || ^0.14.0 || ^15.0.0 || ^16.0.0-0"
}
}