-
Notifications
You must be signed in to change notification settings - Fork 7
/
package.json
51 lines (51 loc) · 1.46 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
{
"version": "1.0.1",
"name": "react-c2c",
"description": "Performant and comparitively light copy to clipboard component for react based applications",
"main": "lib/index.js",
"scripts": {
"lib": "babel src/lib -d lib",
"lib:watch": "babel src/lib -w -d lib",
"docs": "webpack-dev-server",
"docs:prod": "webpack -p",
"start": "webpack-dev-server",
"stats": "webpack -p --profile --json > stats.json"
},
"keywords": [
"react",
"copy-to-clipboard",
"c2c",
"copy",
"clipboard",
"render props",
"react-c2c"
],
"license": "MIT",
"peerDependencies": {
"react": "^15.3.0 || ^16.2.0",
"react-dom": "^15.3.0 || ^16.2.0",
"prop-types": "^15.6.0"
},
"devDependencies": {
"@babel/cli": "7.0.0-beta.37",
"@babel/core": "7.0.0-beta.37",
"@babel/plugin-proposal-class-properties": "7.0.0-beta.38",
"@babel/plugin-proposal-object-rest-spread": "7.0.0-beta.38",
"@babel/preset-env": "7.0.0-beta.37",
"@babel/preset-react": "7.0.0-beta.37",
"babel-loader": "8.0.0-beta.0",
"css-loader": "0.28.8",
"html-webpack-plugin": "2.30.1",
"react": "^16.2.0",
"react-dom": "^16.2.0",
"style-loader": "^0.19.1",
"webpack": "^3.10.0",
"webpack-dev-server": "^2.11.0"
},
"author": "solodynamo <[email protected]>",
"homepage": "https://github.com/solodynamo/react-c2c",
"repository": {
"type": "git",
"url": "https://github.com/solodynamo/react-c2c.git"
}
}