forked from bonafideduck/react-highlight-within-textarea
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
60 lines (60 loc) · 1.63 KB
/
package.json
File metadata and controls
60 lines (60 loc) · 1.63 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
{
"name": "react-highlight-within-textarea",
"description": "React component for highlighting bits of text within a textarea",
"version": "2.1.3",
"main": "lib/index.js",
"module": "es/index.js",
"files": [
"css",
"es",
"lib",
"umd"
],
"scripts": {
"build": "nwb build-react-component",
"clean": "nwb clean-module && nwb clean-demo",
"prepublishOnly": "npm run build",
"start": "nwb serve-react-demo",
"test": "nwb test-react",
"test:coverage": "nwb test-react --coverage",
"test:watch": "nwb test-react --server",
"publish-pages": "yarn build && gh-pages --dist=demo/dist"
},
"peerDependencies": {
"draft-js": "^0.11.7",
"prop-types": "^15.7.2",
"react": "^17.0.2",
"react-dom": "^17.0.2"
},
"devDependencies": {
"@fortawesome/fontawesome-svg-core": "^1.2.36",
"@fortawesome/free-brands-svg-icons": "^5.15.4",
"@fortawesome/free-solid-svg-icons": "^5.15.4",
"@fortawesome/react-fontawesome": "^0.1.15",
"@tippyjs/react": "^4.2.5",
"bootstrap": "^5.1.3",
"draft-js": "^0.11.7",
"eslint": "^8.0.1",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-prettier": "^4.0.0",
"gh-pages": "^3.2.3",
"nwb": "^0.25.2",
"prop-types": "^15.7.2",
"react": "^17.0.2",
"react-bootstrap": "^2.0.2",
"react-dom": "^17.0.2",
"react-syntax-highlighter": "^15.4.4"
},
"author": "bonafideduck",
"homepage": "",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/bonafideduck/react-highlight-within-textarea"
},
"keywords": [
"react-component",
"draftjs",
"textarea"
]
}