forked from bvaughn/react-highlight-words
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
106 lines (106 loc) · 3.04 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
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
{
"name": "react-multi-highlight-words",
"version": "0.16.0",
"description": "React component to highlight multiple groups of words within a larger body of text",
"main": "dist/main.js",
"scripts": {
"build": "npm run build:website && npm run build:dist",
"build:website": "npm run clean:website && cross-env NODE_ENV=production webpack --config webpack.config.website.js -p --bail",
"build:dist": "npm run clean:dist && cross-env NODE_ENV=production webpack --config webpack.config.dist.cjs.js --bail && cross-env NODE_ENV=production webpack --config webpack.config.dist.umd.js --bail",
"clean": "npm run clean:website && npm run clean:dist",
"clean:website": "rimraf build",
"clean:dist": "rimraf dist",
"deploy": "gh-pages -d build",
"lint": "standard",
"prebuild": "npm run lint",
"postpublish": "npm run deploy",
"prepublish": "npm run build",
"start": "webpack-dev-server --hot --inline --config webpack.config.dev.js",
"watch": "watch 'clear && npm run lint"
},
"repository": {
"type": "git",
"url": "git+https://github.com/bvaughn/react-highlight-words.git"
},
"author": "Brian Vaughn",
"license": "MIT",
"bugs": {
"url": "https://github.com/bvaughn/react-highlight-words/issues"
},
"homepage": "https://github.com/bvaughn/react-highlight-words#readme",
"keywords": [
"react",
"reactjs",
"react-component",
"highlighter",
"highlight",
"text",
"words",
"matches",
"substring",
"occurrences",
"search"
],
"standard": {
"parser": "babel-eslint",
"ignore": [
"build",
"dist",
"node_modules"
],
"global": [
"afterAll",
"afterEach",
"beforeAll",
"beforeEach",
"describe",
"it",
"jasmine"
]
},
"devDependencies": {
"babel": "^5.8.34",
"babel-core": "^5.8.34",
"babel-eslint": "^4.1.6",
"babel-loader": "^5.4.0",
"babel-plugin-react-transform": "^1.1.1",
"cross-env": "^5.1.3",
"css-loader": "^0.23.0",
"cssnext": "^1.8.4",
"cssnext-loader": "^1.0.1",
"expect.js": "^0.3.1",
"gh-pages": "^0.8.0",
"html-webpack-plugin": "^1.7.0",
"karma": "^0.13.15",
"karma-junit-reporter": "^0.3.8",
"karma-mocha": "^0.2.1",
"karma-phantomjs2-launcher": "^0.3.2",
"karma-sourcemap-loader": "^0.3.6",
"karma-spec-reporter": "0.0.23",
"karma-webpack": "^1.7.0",
"latinize": "^0.2.0",
"lodash": "^4.17.10",
"mocha": "^2.3.4",
"phantomjs2": "^2.0.2",
"react": "^15.1.0",
"react-dom": "^15.1.0",
"react-transform-catch-errors": "^1.0.0",
"react-transform-hmr": "^1.0.1",
"redbox-react": "1.2.6",
"rimraf": "^2.4.4",
"standard": "^5.4.1",
"style-loader": "^0.13.0",
"watch": "^0.16.0",
"webpack": "^1.12.9",
"webpack-dev-server": "^1.14.0",
"worker-loader": "^0.7.0"
},
"dependencies": {
"highlight-words-core": "^1.2.0",
"memoize-one": "^4.0.0",
"prop-types": "^15.5.8"
},
"peerDependencies": {
"react": "^0.14.0 || ^15.0.0 || ^16.0.0-0"
}
}