This repository has been archived by the owner on Mar 10, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 15
/
package.json
129 lines (129 loc) · 3.91 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
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
{
"name": "react-custom-share",
"version": "0.0.0-development",
"description": "Social sharing buttons for React",
"main": "dist/index.js",
"publishConfig": {},
"scripts": {
"develop": "webpack-dev-server --mode development",
"transpile": "rimraf dist && babel src -d dist --ignore /__tests__/ --copy-files",
"build": "rimraf demo/dist && webpack --mode production",
"docs-deploy": "gh-pages -d docs/public",
"test": "jest --coverage",
"test:watch": "jest --watch",
"report-coverage": "cat ./coverage/lcov.info | codecov",
"test:e2e:dev": "npm-run-all --parallel develop cy:open",
"cy:open": "cypress open",
"lint": "eslint src",
"stylelint": "stylelint src/**/*.js",
"validate": "npm-run-all --parallel test lint stylelint transpile",
"semantic-release": "semantic-release",
"travis-deploy-once": "travis-deploy-once"
},
"files": [
"dist"
],
"author": "greg lobinski <[email protected]> (https://www.greglobinski.com/)",
"license": "MIT",
"homepage": "https://github.com/greglobinski/react-custom-share",
"repository": "github:greglobinski/react-custom-share",
"keywords": [
"react",
"share",
"social networks",
"social sharing",
"Facebook",
"Google Plus",
"Twitter",
"E-mail",
"Pinterest",
"Linkedin"
],
"bugs": {
"url": "https://github.com/greglobinski/react-custom-share/issues"
},
"peerDependencies": {
"emotion": "^9.2.4",
"prop-types": "^15.6.0",
"react": "^16.3.0",
"react-dom": "^16.3.0"
},
"devDependencies": {
"@commitlint/cli": "7.0.0",
"@commitlint/config-conventional": "7.0.1",
"babel-cli": "6.24.1",
"babel-core": "6.24.1",
"babel-eslint": "7.2.3",
"babel-loader": "7.1.4",
"babel-plugin-dynamic-import-node": "^2.0.0",
"babel-plugin-react-require": "3.0.0",
"babel-plugin-syntax-dynamic-import": "^6.18.0",
"babel-plugin-transform-class-properties": "6.24.1",
"babel-plugin-transform-object-rest-spread": "6.26.0",
"babel-plugin-transform-react-jsx": "6.24.1",
"babel-preset-env": "1.5.1",
"babel-preset-react": "6.24.1",
"codecov": "^3.0.4",
"common-tags": "^1.8.0",
"cross-env": "5.2.0",
"css-loader": "0.28.11",
"cypress": "^3.0.2",
"cypress-testing-library": "^2.2.0",
"emotion": "^9.2.4",
"enzyme": "^3.3.0",
"enzyme-adapter-react-16": "^1.1.1",
"eslint": "4.1.1",
"eslint-config-react-app": "2.1.0",
"eslint-loader": "2.0.0",
"eslint-plugin-babel": "5.1.0",
"eslint-plugin-emotion": "^9.1.0",
"eslint-plugin-flowtype": "2.34.1",
"eslint-plugin-import": "2.6.0",
"eslint-plugin-jest": "21.17.0",
"eslint-plugin-jsx-a11y": "5.1.1",
"eslint-plugin-react": "7.1.0",
"faker": "^4.1.0",
"gh-pages": "^1.2.0",
"globals": "11.7.0",
"html-webpack-plugin": "3.2.0",
"husky": "1.0.0-rc.9",
"jest": "23.2.0",
"jest-emotion": "^9.2.4",
"jsdom": "^11.11.0",
"mini-css-extract-plugin": "^0.4.1",
"npm-run-all": "4.1.3",
"prettier": "1.13.7",
"prismjs": "^1.15.0",
"prop-types": "^15.6.0",
"react": "^16.3.0",
"react-dom": "^16.3.0",
"react-icons": "2.2.7",
"react-prism": "^4.3.2",
"react-testing-library": "^4.1.2",
"rimraf": "2.6.2",
"semantic-release": "^15.7.1",
"style-loader": "0.21.0",
"stylelint": "9.3.0",
"stylelint-config-recommended": "^2.1.0",
"stylelint-config-styled-components": "^0.1.1",
"stylelint-order": "0.8.1",
"stylelint-processor-styled-components": "^1.3.1",
"travis-deploy-once": "^5.0.1",
"webpack": "4.12.1",
"webpack-cli": "3.0.8",
"webpack-dev-server": "3.1.4"
},
"dependencies": {
"intersection-observer": "^0.5.0",
"lodash.debounce": "^4.0.8"
},
"babel": {
"presets": "./.babelrc.js"
},
"husky": {
"hooks": {
"pre-commit": "npm run validate",
"commit-msg": "commitlint -E HUSKY_GIT_PARAMS"
}
}
}