forked from nygardk/react-share
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
73 lines (73 loc) · 2 KB
/
package.json
File metadata and controls
73 lines (73 loc) · 2 KB
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
{
"name": "react-share",
"version": "1.10.2",
"description": "Easy social media share buttons and share counts.",
"main": "./lib/react-share.js",
"engines": {
"node": ">=4.0.0",
"npm": ">=3.0.0"
},
"scripts": {
"build": "npm run lint && npm run build-src && npm run build-demos",
"build-src": "babel ./src --out-dir ./lib",
"build-demos": "NODE_ENV=production webpack -p --config webpack.demos.config.js",
"run-demos": "NODE_ENV=development webpack-dev-server --config webpack.demos.config.js --content-base demos/ --progress --colors",
"lint": "eslint --ext .jsx ./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": "klaus.nygard@gmail.com",
"url": "http://klausnygard.fi"
},
"license": "MIT",
"devDependencies": {
"babel-cli": "6.18.0",
"babel-core": "6.18.2",
"babel-eslint": "7.1.0",
"babel-loader": "6.2.7",
"babel-plugin-transform-class-properties": "6.18.0",
"babel-plugin-transform-runtime": "6.15.0",
"babel-preset-airbnb": "1.1.1",
"babel-preset-es2015": "6.18.0",
"babel-preset-react": "6.16.0",
"babel-preset-stage-0": "6.16.0",
"eslint": "2.13.1",
"eslint-config-airbnb": "7.0.0",
"eslint-loader": "1.6.0",
"eslint-plugin-jsx-a11y": "0.6.2",
"eslint-plugin-react": "4.3.0",
"file-loader": "0.9.0",
"react": "15.3.0",
"react-dom": "15.2.0",
"react-hot-loader": "1.3.0",
"url-loader": "0.5.7",
"webpack": "1.13.3",
"webpack-dev-server": "1.16.2"
},
"dependencies": {
"babel-runtime": "6.6.1",
"classnames": "2.2.5",
"jsonp": "0.2.0",
"platform": "1.3.2"
},
"peerDependencies": {
"react": "0.13.x || 0.14.x || 15.x.x"
}
}