-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
59 lines (59 loc) · 1.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
{
"name": "@foobaragency/react-social-share",
"version": "0.0.0-semantically-released",
"description": "A simple but robust social media share module",
"main": "dist/cjs/index.js",
"module": "dist/esm/index.js",
"files": [
"dist"
],
"scripts": {
"build": "rm -rf dist/ && prettier --write src/ && yarn build:esm && yarn build:cjs",
"build:cjs": "tsc --module CommonJS --outDir dist/cjs",
"build:esm": "tsc",
"fix": "yarn format",
"format": "prettier --write .",
"format:check": "prettier --check .",
"test": "jest",
"test:watch": "jest --watch",
"prepare": "husky install"
},
"repository": {
"type": "git",
"url": "git+https://github.com/foobaragency/react-social-share.git"
},
"keywords": [],
"author": "Sam Odum",
"license": "MIT",
"bugs": {
"url": "https://github.com/foobaragency/react-social-share/issues"
},
"homepage": "https://github.com/foobaragency/react-social-share#readme",
"devDependencies": {
"@testing-library/jest-dom": "^5.16.2",
"@testing-library/react": "^12.1.3",
"@types/jest": "^27.4.1",
"@types/node": "^17.0.18",
"@types/react": "^17.0.39",
"@types/react-dom": "^17.0.11",
"@typescript-eslint/eslint-plugin": "^5.12.1",
"@typescript-eslint/parser": "^5.12.1",
"eslint": "^7.32.0",
"eslint-config-prettier": "^8.4.0",
"eslint-plugin-import": "^2.25.4",
"eslint-plugin-jsx-a11y": "^6.5.1",
"eslint-plugin-react": "^7.28.0",
"husky": ">=6",
"jest": "^27.5.1",
"lint-staged": ">=10",
"prettier": "^2.5.1",
"react": "^17.0.2",
"react-dom": "^17.0.2",
"ts-jest": "^27.1.3",
"typescript": "^4.5.5"
},
"peerDependencies": {
"react": "^17.0.2",
"react-dom": "^17.0.2"
}
}