forked from nygardk/react-share
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
54 lines (54 loc) · 1.46 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
{
"name": "react-share",
"version": "1.4.1",
"description": "Easy social media share buttons and share counts.",
"main": "./build/react-share.js",
"scripts": {
"build": "npm run lint && npm run build-src && npm run build-demos",
"build-src": "babel ./src --out-dir ./build",
"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"
},
"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": "^5.8.23",
"babel-core": "^5.8.25",
"babel-eslint": "^4.1.3",
"babel-loader": "^5.3.2",
"eslint": "^1.7.3",
"eslint-config-airbnb": "^0.1.0",
"eslint-loader": "^1.1.0",
"eslint-plugin-react": "^3.6.3",
"react-dom": "^0.14.0",
"react-hot-loader": "^1.3.0",
"url-loader": "^0.5.6",
"webpack": "^1.12.2",
"webpack-dev-server": "^1.12.1"
},
"dependencies": {
"jsonp": "^0.2.0",
"platform": "^1.3.0",
"react": "^0.14.0 || ^0.13.0"
}
}