-
Notifications
You must be signed in to change notification settings - Fork 7
/
package.json
42 lines (42 loc) · 1.11 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
{
"name": "react-clipboard",
"version": "1.3.2",
"main": "lib/index.js",
"files": [
"lib"
],
"repository": {
"type": "git",
"url": "git://github.com/WickyNilliams/react-clipboard"
},
"description": "component to allow user to easily copy text",
"homepage": "https://github.com/WickyNilliams/react-simple-colorpicker",
"keywords": [
"react",
"react-component",
"copy",
"clipboard"
],
"scripts": {
"build": "NODE_ENV=production babel -d lib/ src/",
"test": "echo \"Error: no test specified\" && exit 1",
"version": "npm run build",
"postversion": "git push origin master --tags && npm publish"
},
"author": "Nick Williams",
"license": "MIT",
"peerDependencies": {
"react": "^0.14.0 || ^15.0.0 || ^16.0.0-beta || ^16.0.0",
"react-dom": "^0.14.0 || ^15.0.0 || ^16.0.0-beta || ^16.0.0"
},
"dependencies": {
"prop-types": "^15.5.0"
},
"devDependencies": {
"babel-cli": "^6.23.0",
"babel-core": "^6.23.1",
"babel-plugin-transform-class-properties": "^6.24.1",
"babel-preset-env": "^1.6.0",
"babel-preset-react": "^6.23.0"
}
}