-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
67 lines (67 loc) · 1.94 KB
/
package.json
File metadata and controls
67 lines (67 loc) · 1.94 KB
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": "@ivanlhz/react-highlight-text",
"version": "1.0.2",
"main": "build/index.js",
"module": "build/index.es.js",
"files": [
"build"
],
"scripts": {
"build": "rollup -c",
"test": "jest --watch",
"test:coverage": "jest --coverage",
"storybook": "start-storybook -p 6006",
"storybook:export": "build-storybook",
"make-badges": "node_modules/.bin/jest-badges-readme",
"make-readme": "npm run test:coverage && npm run make-badges"
},
"keywords": [
"react",
"component",
"text",
"highlight",
"bold",
"searchtext",
"matchtext"
],
"author": "Iván López Hdez <ivanlhz@gmail.com>",
"license": "MIT",
"description": "`React` component that search and change all occurrences in a text to bold applying `<stong>` html tag to each occurence.",
"devDependencies": {
"@babel/core": "^7.11.1",
"@olavoparno/jest-badges-readme": "^1.5.1",
"@rollup/plugin-commonjs": "^14.0.0",
"@rollup/plugin-node-resolve": "^8.4.0",
"@storybook/react": "^5.3.19",
"@testing-library/jest-dom": "^5.11.2",
"@testing-library/react": "^10.4.8",
"@types/jest": "^26.0.9",
"@types/react": "^16.9.44",
"babel-loader": "^8.1.0",
"babel-preset-react-app": "^9.1.2",
"identity-obj-proxy": "^3.0.0",
"jest": "^26.2.2",
"react": "^16.13.1",
"react-dom": "^16.13.1",
"rollup": "^2.23.1",
"rollup-plugin-peer-deps-external": "^2.2.3",
"rollup-plugin-typescript2": "^0.27.2",
"ts-jest": "^26.1.4",
"typescript": "^3.9.7"
},
"peerDependencies": {
"react": ">=16.13.1",
"react-dom": ">=16.13.1"
},
"publishConfig": {
"registry": "https://registry.npmjs.org/"
},
"repository": {
"type": "git",
"url": "git+https://github.com/ivanlhz/react-highlight-text.git"
},
"bugs": {
"url": "https://github.com/ivanlhz/react-highlight-text/issues"
},
"homepage": "https://github.com/ivanlhz/react-highlight-text#readme"
}