-
Notifications
You must be signed in to change notification settings - Fork 4
/
package.json
59 lines (59 loc) · 1.59 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
{
"name": "react-copy-code",
"version": "2.1.2",
"description": "Tool to add a copy codeblock to clipboard",
"main": "dist/index.js",
"scripts": {
"test": "jest --watch",
"start": "tsc -w",
"build": "tsc",
"prepublish": "rimraf ./dist && mkdirp ./dist && npm run build"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Jarvis1010/react-copy-code.git"
},
"keywords": [
"component",
"react",
"copy",
"clipboard"
],
"author": "Justin Travis Mair",
"license": "MIT",
"devDependencies": {
"@types/enzyme": "^3.9.1",
"@types/enzyme-adapter-react-16": "^1.0.5",
"@types/highlight.js": "^9.12.3",
"@types/jest": "^24.0.11",
"@types/jsdom": "^12.2.3",
"@types/react": "^16.8.14",
"@types/react-dom": "^16.8.4",
"@types/styled-components": "^4.1.14",
"enzyme": "^3.9.0",
"enzyme-adapter-react-16": "^1.10.0",
"enzyme-to-json": "^3.3.5",
"highlight.js": "^10.4.1",
"jest": "^24.7.1",
"jest-styled-components": "^6.3.1",
"jsdom": "^14.0.0",
"react": "^16.8.4",
"react-addons-test-utils": "^15.6.2",
"react-dom": "^16.8.4",
"react-test-renderer": "^16.8.4",
"regenerator-runtime": "^0.13.1",
"styled-components": "^4.1.3",
"ts-jest": "^24.0.2",
"typescript": "^3.4.4"
},
"peerDependencies": {
"react": ">=16.6",
"react-dom": ">=16.6",
"highlight.js": ">=9",
"styled-components": ">=4"
},
"bugs": {
"url": "https://github.com/Jarvis1010/react-copy-code/issues"
},
"homepage": "https://github.com/Jarvis1010/react-copy-code#readme"
}