-
Notifications
You must be signed in to change notification settings - Fork 26
/
Copy pathpackage.json
67 lines (67 loc) · 1.76 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
{
"name": "highlightable",
"version": "1.3.0-beta.0",
"description": "Component that help highlighting text",
"main": "lib/Highlightable.min.js",
"types": "types/index.d.ts",
"scripts": {
"build": "webpack && tsc",
"dev": "webpack --progress --colors --watch --mode=dev",
"test": "jest"
},
"devDependencies": {
"@babel/cli": "^7.13.0",
"@babel/core": "^7.13.8",
"@babel/eslint-parser": "^7.13.8",
"@babel/plugin-transform-arrow-functions": "^7.13.0",
"@babel/preset-env": "^7.20.2",
"@babel/preset-react": "^7.18.6",
"@babel/preset-typescript": "^7.18.6",
"@babel/register": "^7.13.8",
"@types/emoji-regex": "^9.2.0",
"babel-jest": "^29.5.0",
"babel-loader": "8.2.2",
"babel-plugin-add-module-exports": "^1.0.4",
"chai": "4.1.0",
"enzyme": "^3.11.0",
"eslint": "^8.33.0",
"eslint-plugin-react": "^7.32.2",
"eslint-webpack-plugin": "^4.0.0",
"jest": "^29.5.0",
"jsdom": "^11.1.0",
"mocha": "3.4.2",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-test-renderer": "^18.2.0",
"sinon": "^2.4.1",
"terser-webpack-plugin": "^5.3.6",
"typescript": "^4.9.5",
"webpack": "5.75.0",
"webpack-cli": "^5.0.1",
"yargs": "8.0.2"
},
"repository": {
"type": "git",
"url": "https://github.com/ydeshayes/react-highlight.git"
},
"keywords": [
"highlight",
"tooltip",
"React",
"ReactJS",
"range",
"text"
],
"author": "Yann Deshayes",
"bugs": {
"url": "https://github.com/ydeshayes/react-highlight/issues"
},
"homepage": "https://ydeshayes.github.io/react-highlight/",
"dependencies": {
"react": "^18.2.0",
"react-dom": "^18.2.0",
"@types/react": "^18.0.28",
"emoji-regex": "^10.2.1"
},
"license": "MIT"
}