-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
69 lines (69 loc) · 1.91 KB
/
package.json
File metadata and controls
69 lines (69 loc) · 1.91 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
68
69
{
"name": "react-interactive-highlighter",
"version": "0.3.0",
"description": "A React component to select and display an arbitrary number of highlighted subsections in a text body.",
"main": "lib/index.js",
"homepage": "https://github.com/jrheling/react-interactive-highlighter#readme",
"scripts": {
"build": "yarn clean && tsc && tsc -m es6 --outDir lib-esm && webpack",
"clean": "shx rm -rf _bundles lib lib-esm",
"lint": "eslint 'src/**/*.{js,ts,tsx}'",
"test": "jest",
"prepare": "yarn test && yarn lint && yarn build"
},
"keywords": [
"react",
"text",
"highlight",
"selection",
"multi",
"multiple",
"interactive"
],
"author": "Josh Heling <jrh-npm@netfluvia.org> (https://netfluvia.com/",
"repository": "github:jrheling/react-interactive-highlighter",
"license": "MIT",
"devDependencies": {
"@types/enzyme": "^3.10.4",
"@types/enzyme-adapter-react-16": "^1.0.5",
"@types/jest": "^24.9.1",
"@types/react": "^16.9.19",
"@types/react-dom": "^16.9.5",
"@typescript-eslint/eslint-plugin": "^2.17.0",
"@typescript-eslint/parser": "^2.17.0",
"awesome-typescript-loader": "^5.2.1",
"enzyme": "^3.11.0",
"enzyme-adapter-react-16": "^1.15.2",
"eslint": "^6.8.0",
"eslint-plugin-react": "^7.18.0",
"jest": "^25.1.0",
"shx": "^0.3.2",
"ts-jest": "^25.0.0",
"typescript": "^3.7.5",
"uglifyjs-webpack-plugin": "^2.2.0",
"webpack": "^4.41.5",
"webpack-cli": "^3.3.10"
},
"jest": {
"preset": "ts-jest",
"testEnvironment": "node"
},
"eslintConfig": {
"parser": "@typescript-eslint/parser",
"parserOptions": {
"ecmaVersion": 2018,
"sourceType": "module",
"ecmaFeatures": {
"jsx": true
}
}
},
"dependencies": {
"react": "^16.12.0",
"react-dom": "^16.12.0"
},
"peerDependencies": {
"react": "^16.0.0",
"react-dom": "^16.0.0"
}
}