-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
82 lines (82 loc) · 2.38 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
{
"name": "react-github-buttons",
"version": "0.5.0",
"description": "React Components for dynamic buttons for github repo's star, fork etc.",
"keywords": [
"react",
"github",
"component",
"utility"
],
"author": {
"email": "vaibhav.hrt@gmail.com",
"name": "Vaibhav Vishal",
"url": "https://github.com/vaibhavhrt"
},
"license": "MIT",
"repository": "https://github.com/vaibhavhrt/react-github-buttons",
"bugs": {
"url": "https://github.com/vaibhavhrt/react-github-buttons/issues",
"email": "vaibhav.hrt@gmail.com"
},
"homepage": "https://vaibhavhrt.github.io/react-github-buttons/",
"main": "dist/index.js",
"module": "dist/index.es.js",
"jsnext:main": "dist/index.es.js",
"engines": {
"node": ">=10",
"npm": ">=6"
},
"scripts": {
"test": "cross-env CI=1 react-scripts test --env=jsdom",
"test:watch": "react-scripts test --env=jsdom",
"build": "rollup -c",
"start": "rollup -c -w",
"prepare": "yarn build",
"predeploy": "cd example && yarn && yarn build",
"deploy": "gh-pages -d example/build",
"lint": "eslint src"
},
"dependencies": {
"@primer/octicons-react": "^12.0.0",
"react-scripts": "^4.0.2"
},
"peerDependencies": {
"react": "^16.8.0 || ^17.0.0",
"react-dom": "^16.8.0 || ^17.0.0"
},
"devDependencies": {
"@rollup/plugin-url": "^6.0.0",
"@svgr/rollup": "^5.4.0",
"@types/jest": "^26.0.14",
"@types/prop-types": "^15.7.1",
"@types/react": "^17.0.2",
"@types/react-dom": "^17.0.1",
"@typescript-eslint/eslint-plugin": "^4.15.1",
"@typescript-eslint/parser": "^4.15.1",
"babel-core": "^6.26.3",
"babel-runtime": "^6.26.0",
"cross-env": "^7.0.2",
"eslint": "^7.10.0",
"eslint-config-react-app": "^6.0.0",
"eslint-plugin-flowtype": "^5.2.2",
"eslint-plugin-import": "^2.22.1",
"eslint-plugin-jsx-a11y": "^6.3.1",
"eslint-plugin-prettier": "^3.1.4",
"eslint-plugin-react": "^7.21.3",
"eslint-plugin-react-hooks": "^4.1.2",
"gh-pages": "^3.1.0",
"postcss": "^8.2.6",
"rollup": "^2.28.2",
"rollup-plugin-babel": "^4.3.2",
"rollup-plugin-commonjs": "^10.0.0",
"rollup-plugin-node-resolve": "^5.0.2",
"rollup-plugin-peer-deps-external": "^2.2.0",
"rollup-plugin-postcss": "^4.0.0",
"rollup-plugin-typescript2": "^0.30.0",
"typescript": "^4.0.3"
},
"files": [
"dist"
]
}