-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
44 lines (44 loc) · 1.19 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
{
"name": "react-email-share-link",
"version": "1.0.3",
"description": "A React component for creating share by email links.",
"main": "dist/index.js",
"scripts": {
"dev": "npm run build && parcel dev/index.html -d dist-dev/",
"build": "cross-env NODE_ENV=production && babel src --out-dir dist",
"prepublishOnly": "npm run build"
},
"keywords": [
"email",
"component",
"react",
"mailto"
],
"devDependencies": {
"babel-cli": "^6.26.0",
"babel-core": "^6.26.3",
"babel-plugin-add-module-exports": "^0.2.1",
"babel-plugin-syntax-dynamic-import": "^6.18.0",
"babel-plugin-transform-runtime": "^6.23.0",
"babel-preset-es2015": "^6.24.1",
"babel-preset-react": "^6.24.1",
"babel-preset-stage-0": "^6.24.1",
"cross-env": "^5.2.0",
"parcel-bundler": "^1.11.0",
"react": "^16.7.0",
"react-dom": "^16.7.0"
},
"author": {
"name": "Austin Gordon",
"email": "[email protected]",
"url": "https://www.austinleegordon.com/"
},
"repository": {
"type": "git",
"url": "https://github.com/hutsoninc/react-email-share-link.git"
},
"license": "MIT",
"dependencies": {
"prop-types": "^15.7.2"
}
}