-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
71 lines (71 loc) · 2.1 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
{
"name": "@brianmcallister/react-highlight-text",
"version": "1.0.7",
"description": "React binding for @brianmcallister/highlight-text",
"main": "dist/HighlightText.js",
"repository": "brianmcallister/react-highlight-text",
"homepage": "https://react-highlight-text.netlify.com/",
"license": "MIT",
"author": {
"name": "Brian Wm. McAllister",
"email": "brian@brianmcallister.com",
"url": "https://www.brianmcallister.com"
},
"files": [
"dist/**/*"
],
"keywords": [
"highlight",
"highlight-text",
"react"
],
"scripts": {
"build": "npm run clean && tsc && rimraf dist/__tests__",
"clean": "rimraf dist",
"lint": "eslint --cache --ext .js,.jsx,.ts,.tsx --ignore-path .gitignore ./src ./demo",
"prepare": "npm run build",
"test": "jest",
"types": "tsc --noEmit"
},
"dependencies": {
"@brianmcallister/highlight-text": "^2.0.1",
"classnames": "^2.2.6",
"react": "^16"
},
"devDependencies": {
"@babel/core": "7.7.2",
"@babel/preset-env": "7.7.1",
"@babel/preset-react": "7.7.0",
"@babel/preset-typescript": "7.7.2",
"@types/classnames": "^2.2.10",
"@types/enzyme": "3.10.3",
"@types/jest": "24.0.23",
"@types/react": "16.9.11",
"@typescript-eslint/eslint-plugin": "2.7.0",
"@typescript-eslint/parser": "2.7.0",
"babel-loader": "8.0.6",
"enzyme": "3.10.0",
"enzyme-adapter-react-16": "1.15.1",
"eslint": "6.6.0",
"eslint-config-airbnb-typescript": "6.3.0",
"eslint-config-prettier": "6.5.0",
"eslint-plugin-eslint-comments": "3.1.2",
"eslint-plugin-import": "2.18.2",
"eslint-plugin-jest": "23.0.4",
"eslint-plugin-jsx-a11y": "6.2.3",
"eslint-plugin-prettier": "3.1.1",
"eslint-plugin-promise": "4.2.1",
"eslint-plugin-react": "7.16.0",
"eslint-plugin-react-hooks": "2.3.0",
"jest": "^25.2.7",
"jest-environment-enzyme": "7.1.2",
"jest-enzyme": "7.1.2",
"prettier": "1.19.1",
"react-dom": "16.12.0",
"rimraf": "3.0.0",
"ts-jest": "^25.3.1",
"typescript": "3.7.2",
"webpack": "4.41.2",
"webpack-cli": "3.3.10"
}
}