forked from nkbt/react-copy-to-clipboard
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
93 lines (93 loc) · 2.48 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
81
82
83
84
85
86
87
88
89
90
91
92
93
{
"name": "@nosplatform/react-copy-to-clipboard",
"version": "5.0.1",
"description": "Copy-to-clipboard React component",
"main": "lib/index.js",
"config": {
"component": "CopyToClipboard",
"externals": {
"react": "React",
"react-dom": "ReactDOM"
}
},
"scripts": {
"build": "scripts/build.js",
"start": "scripts/dev.js",
"dist": "scripts/dist.js",
"e2e": "scripts/e2e.js",
"ghPages": "scripts/ghPages.js",
"lib": "scripts/lib.js",
"lint": "scripts/lint.js",
"pub": "scripts/pub.js",
"test": "scripts/test.js",
"prepublish": "yarn build",
"postversion": "git push --follow-tags"
},
"repository": {
"type": "git",
"url": "https://github.com/nkbt/react-copy-to-clipboard.git"
},
"keywords": [
"component",
"react-component",
"react",
"copy to clipboard",
"clipboard"
],
"author": "Nik Butenko <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/nkbt/react-copy-to-clipboard/issues"
},
"homepage": "https://github.com/nkbt/react-copy-to-clipboard",
"peerDependencies": {
"react": "^15.3.0 || ^16.0.0"
},
"dependencies": {
"@nosplatform/copy-to-clipboard": "^3",
"prop-types": "^15.5.8"
},
"devDependencies": {
"babel-cli": "^6.24.1",
"babel-eslint": "^8.0.1",
"babel-loader": "^7.1.1",
"babel-plugin-transform-class-properties": "^6.24.1",
"babel-plugin-transform-object-rest-spread": "^6.23.0",
"babel-plugin-transform-react-remove-prop-types": "^0.4.8",
"babel-preset-env": "^1.6.0",
"babel-preset-react": "^6.24.1",
"babel-register": "^6.24.1",
"babili-webpack-plugin": "^0.1.2",
"css-loader": "^0.28.4",
"eslint": "^4.4.0",
"eslint-config-airbnb": "^15.1.0",
"eslint-plugin-babel": "^4.1.2",
"eslint-plugin-import": "^2.7.0",
"eslint-plugin-jsx-a11y": "^6.0.2",
"eslint-plugin-react": "^7.1.0",
"extract-text-webpack-plugin": "^3.0.0",
"finalhandler": "^1.0.4",
"gh-pages": "^1.0.0",
"glob": "^7.1.2",
"html-webpack-include-assets-plugin": "^1.0.0",
"html-webpack-plugin": "^2.30.1",
"nightwatch": "^0.9.16",
"portfinder": "^1.0.13",
"react": "^16.0.0",
"react-dom": "^16.0.0",
"rimraf": "^2.6.1",
"serve-static": "^1.12.3",
"style-loader": "^0.18.2",
"tape": "^4.8.0",
"webpack": "^3.4.1",
"webpack-dev-server": "^2.6.1"
},
"files": [
"build",
"lib",
"src",
"LICENSE",
"package.json",
"README.md"
]
}