-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
80 lines (80 loc) · 2.62 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
{
"name": "react-mailto.js",
"version": "3.0.3",
"description": "React MailTo component for easy creation of fully configured mailto links",
"exports": {
".": "./dist/index.js"
},
"src": "./src/index.tsx",
"types": "./dist/index.d.ts",
"type": "module",
"sideEffects": false,
"scripts": {
"clean": "rm -rf ./dist && rm -rf ./.storybook/.cache && rm -rf ./coverage",
"clean:all": "rm -rf ./node_modules && npm run clean",
"prepare": "rm -rf ./dist && mkdir dist && npm run build && npm run build:tsc",
"build": "babel ./src/* --out-dir ./dist --extensions '.ts,.tsx'",
"build:tsc": "tsc --declaration --emitDeclarationOnly",
"test": "NODE_ENV=test jest --testRegex=\".test.(j|t)sx?$\" --config=./jest.config.json",
"storybook": "start-storybook -p 9001 -c .storybook",
"postpublish": "PACKAGE_VERSION=$(cat package.json | grep \\\"version\\\" | head -1 | awk -F: '{ print $2 }' | sed 's/[\",]//g' | tr -d '[[:space:]]') && git tag v$PACKAGE_VERSION && git push --tags"
},
"repository": {
"type": "git",
"url": "git+https://github.com/vasyl-zubach/react-mailto.js.git"
},
"keywords": [
"react",
"react-component",
"email",
"mailto"
],
"author": {
"name": "Vasyl Zubach",
"email": "[email protected]",
"url": "https://zubach.com"
},
"engines": {
"node": ">=16"
},
"license": "MIT",
"bugs": {
"url": "https://github.com/vasyl-zubach/react-mailto.js/issues"
},
"homepage": "https://github.com/vasyl-zubach/react-mailto.js#readme",
"peerDependencies": {
"@babel/runtime": "7.x",
"react": "16.x || 17.x || 18.x"
},
"dependencies": {
"window-or-global": "^1.0.1"
},
"devDependencies": {
"@babel/cli": "^7.18.10",
"@babel/core": "^7.18.13",
"@babel/node": "^7.18.10",
"@babel/plugin-proposal-optional-chaining": "^7.18.9",
"@babel/plugin-transform-modules-commonjs": "^7.18.6",
"@babel/plugin-transform-react-jsx": "^7.18.10",
"@babel/plugin-transform-runtime": "^7.18.10",
"@babel/preset-env": "^7.18.10",
"@babel/preset-react": "^7.18.6",
"@babel/preset-typescript": "^7.18.6",
"@storybook/addon-actions": "^6.5.12",
"@storybook/addon-console": "^1.2.3",
"@storybook/react": "^6.5.12",
"@types/jest": "^29.0.0",
"@types/react": "^18.0.17",
"@types/systemjs": "^6.1.1",
"@types/window-or-global": "^1.0.4",
"babel-jest": "^29.0.0",
"babel-loader": "^8.2.5",
"jest": "^29.0.2",
"jest-environment-jsdom": "^29.0.2",
"react": "18.2.0",
"react-dom": "^18.2.0",
"react-test-renderer": "^18.2.0",
"prettier": "^2.7.1",
"typescript": "^4.8.3"
}
}