-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
73 lines (73 loc) · 1.81 KB
/
package.json
File metadata and controls
73 lines (73 loc) · 1.81 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-simple-share",
"version": "0.1.1",
"description":
"React component buttons that open popups to share your link on Facebook, Twitter, Reddit, Pinterest, LinkedIn, and Google+, without the client downloading heavy third-party sharing dependencies.",
"main": "build/index.js",
"license": "MIT",
"author": {
"name": "Steve Wozniak",
"email": "stephan.wozniak@gmail.com",
"url": "https://github.com/swozniak"
},
"repository": {
"type": "git",
"url": "git://github.com/swozniak/react-simple-share.git"
},
"homepage": "https://github.com/swozniak/react-simple-share",
"bugs": {
"url": "https://github.com/swozniak/react-simple-share/issues"
},
"peerDependencies": {
"react": "^15.5.4",
"react-dom": "^0.14.0 || ^15.0.0 || ^16.0.0"
},
"dependencies": {
"prop-types": "^15.6.0",
"react": "^16.2.0",
"react-dom": "^15.0.0",
"react-icons": "^2.2.7",
"webpack": "^2.6.1"
},
"devDependencies": {
"babel-cli": "^6.24.1",
"babel-core": "^6.24.1",
"babel-jest": "^22.1.0",
"babel-loader": "^7.0.0",
"babel-plugin-transform-object-rest-spread": "^6.23.0",
"babel-plugin-transform-react-jsx": "^6.24.1",
"babel-preset-env": "^1.5.1",
"react-test-renderer": "^16.2.0"
},
"scripts": {
"test": "jest",
"start": "webpack --watch",
"build": "webpack",
"update-snapshots": "jest --updateSnapshot"
},
"jest": {
"transform": {
"^.+\\.jsx$": "babel-jest",
"^.+\\.js$": "babel-jest"
}
},
"keywords": [
"social-media",
"social",
"simple-share",
"simple-sharer",
"share",
"share-button",
"share-buttons",
"buttons,",
"react",
"react-component",
"facebook",
"twitter",
"tumblr",
"reddit",
"pinterest",
"linkedin",
"google+"
]
}