-
Notifications
You must be signed in to change notification settings - Fork 52
/
package.json
52 lines (52 loc) · 1.45 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
{
"name": "react-copy-mailto",
"version": "1.1.1",
"description": "A fully customizable React component for copying email from mailto links",
"main": "./lib/index.cjs.js",
"module": "./lib/index.js",
"types": "./lib/index.d.ts",
"scripts": {
"tsc": "tsc",
"build": "babel src/lib --out-dir lib --out-file-extension .cjs.js --extensions '.ts,.tsx' && tsc",
"demo:dev": "webpack-dev-server --mode development",
"demo:prod": "webpack --mode production",
"prepublishOnly": "yarn build"
},
"keywords": [
"copy email",
"react"
],
"author": "Devfolio",
"license": "MIT",
"peerDependencies": {
"react": "^16.8.0",
"react-dom": "^16.8.0"
},
"devDependencies": {
"@babel/cli": "^7.10.5",
"@babel/core": "^7.10.5",
"@babel/preset-env": "^7.10.4",
"@babel/preset-react": "^7.10.4",
"@babel/preset-typescript": "^7.10.4",
"@types/react": "^16.9.43",
"@types/react-dom": "^16.9.8",
"css-loader": "^4.0.0",
"html-webpack-plugin": "^4.3.0",
"react": "^16.13.1",
"react-dom": "^16.13.1",
"source-map-loader": "^1.0.1",
"style-loader": "^1.2.1",
"ts-loader": "^8.0.1",
"typescript": "^3.9.7",
"webpack": "^4.44.0",
"webpack-cli": "^3.3.12",
"webpack-dev-server": "^3.11.0"
},
"repository": {
"type": "git",
"url": "https://github.com/devfolioco/react-copy-mailto"
},
"bugs": {
"url": "https://github.com/devfolioco/react-copy-mailto/issues"
}
}