-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
77 lines (77 loc) · 2.12 KB
/
package.json
File metadata and controls
77 lines (77 loc) · 2.12 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
74
75
76
77
{
"name": "react-share-j",
"version": "0.0.5",
"description": "social media buttons popular in japan",
"main": "./lib/react-share-j.js",
"engines": {
"node": ">=4.0.0",
"npm": ">=3.0.0"
},
"directories": {
"example": "example"
},
"scripts": {
"build": "npm run build-src && npm run lint && 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 example/ --progress --colors",
"lint": "eslint --ext .jsx ./src ./example",
"prepublish": "npm run build",
"test": "echo \"Success: no test specified\""
},
"keywords": [
"react",
"component",
"react-component",
"social",
"media",
"social-media",
"share",
"button",
"count"
],
"author": "cncgl",
"repository": {
"type": "git",
"url": "https://github.com/cncgl/react-share-j"
},
"license": "MIT",
"devDependencies": {
"babel-cli": "^6.10.1",
"babel-core": "^6.10.4",
"babel-eslint": "^7.2.1",
"babel-loader": "^6.2.4",
"babel-plugin-transform-runtime": "^6.9.0",
"babel-preset-airbnb": "^2.0.0",
"babel-preset-es2015": "^6.9.0",
"babel-preset-react": "^6.5.0",
"babel-preset-stage-0": "^6.5.0",
"babel-runtime": "^6.9.2",
"eslint": "^3.19.0",
"eslint-config-airbnb": "^14.1.0",
"eslint-loader": "^1.3.0",
"eslint-plugin-import": "^2.2.0",
"eslint-plugin-jsx": "0.0.2",
"eslint-plugin-jsx-a11y": "^4.0.0",
"eslint-plugin-react": "^6.10.3",
"file-loader": "^0.11.0",
"react": "^15.1.0",
"react-hot-loader": "^1.3.0",
"url-loader": "^0.5.7",
"webpack": "^1.13.1",
"webpack-dev-server": "^1.14.1"
},
"dependencies": {
"babel-runtime": "^6.9.2",
"classnames": "^2.2.5",
"fetch-jsonp": "^1.0.0",
"jquery": "^3.2.1",
"platform": "^1.3.1",
"react-dom": "^15.1.0",
"react-share": "^1.8.0",
"whatwg-fetch": "^1.0.0"
},
"peerDependencies": {
"react": "0.13.x || 0.14.x || 15.x.x"
}
}