-
Notifications
You must be signed in to change notification settings - Fork 6
/
package.json
65 lines (65 loc) · 1.8 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
62
63
64
65
{
"name": "react-sharingbuttons",
"version": "1.0.0",
"description": "Lightweight social sharing buttons for React.",
"main": "dist/index.js",
"author": "Kacper Golinski <kacper.golinski@gmail.com>",
"license": "MIT",
"scripts": {
"start": "webpack-dev-server",
"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.*"
},
"publishConfig": {
"registry": "https://registry.npmjs.org/"
},
"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": "^3.8.0",
"enzyme-adapter-react-16": "^1.7.1",
"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",
"mocha": "^5.2.0",
"react": "^16.7.0",
"react-dom": "^16.7.0",
"react-router": "^3.2.1",
"react-router-scroll": "^0.4.4",
"webpack": "^1.13.3",
"webpack-dev-server": ">=3.1.11"
},
"peerDependencies": {
"react": "^16.7.0"
},
"dependencies": {
"prop-types": "^15.6.2",
"style-loader": "^0.23.1"
}
}