forked from caspg/react-sharingbuttons
-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
61 lines (61 loc) · 1.71 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
{
"name": "react-sharingbuttons",
"version": "0.1.2",
"description": "Lightweight social sharing buttons for React.",
"main": "dist/index.js",
"author": "Kacper Golinski <[email protected]>",
"license": "MIT",
"scripts": {
"start": "webpack-dev-server",
"gatsby:develop": "cd www && gatsby develop",
"clean:dist": "rm -rf dist/*",
"babel": "babel src --out-dir dist",
"css": "cp src/main.css dist/main.css",
"build": "npm run clean:dist && npm run babel && npm run css",
"build_publish": "npm run build && npm publish",
"test": "mocha --recursive --compilers coffee:babel-core/register test/**/*.test.*"
},
"homepage": "https://caspg.github.io/react-sharingbuttons",
"keywords": [
"react",
"react-component",
"social-buttons",
"sharing-buttons"
],
"repository": {
"type": "git",
"url": "https://github.com/caspg/react-sharingbuttons.git"
},
"files": [
"dist"
],
"devDependencies": {
"babel-cli": "^6.18.0",
"babel-core": "^6.18.2",
"babel-loader": "^6.2.8",
"babel-preset-es2015": "^6.18.0",
"babel-preset-react": "^6.16.0",
"css-loader": "^0.26.1",
"enzyme": "^2.6.0",
"eslint": "^3.11.1",
"eslint-config-airbnb": "^13.0.0",
"eslint-loader": "^1.6.1",
"eslint-plugin-import": "^2.2.0",
"eslint-plugin-jsx-a11y": "^2.2.3",
"eslint-plugin-react": "^6.7.1",
"expect": "^1.20.2",
"gatsby": "^0.12.21",
"mocha": "^3.2.0",
"react": "^15.4.1",
"react-addons-test-utils": "^15.4.1",
"react-dom": "^15.4.1",
"webpack": "^1.13.3",
"webpack-dev-server": "^1.16.2"
},
"peerDependencies": {
"react": "^15.4.1"
},
"dependencies": {
"prop-types": "^15.5.10"
}
}