forked from helior/react-highlighter
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
51 lines (51 loc) · 1.35 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
{
"name": "react-highlighter",
"version": "0.4.0",
"description": "Highlight select fragments of texts",
"main": "lib/highlighter.js",
"files": [
"lib",
"dist"
],
"peerDependencies": {
"react": "^0.14.0 || ^15.0.0"
},
"scripts": {
"test": "_mocha",
"coverage": "istanbul cover _mocha -- -R spec",
"check-coverage": "istanbul check-coverage --statement 90 --function 100",
"test-cover": "istanbul cover _mocha --report lcovonly -- -R spec && cat ./coverage/lcov.info | ./node_modules/coveralls/bin/coveralls.js --verbose",
"dist": "rm -rf dist/* && ./node_modules/.bin/webpack"
},
"repository": {
"type": "git",
"url": "https://github.com/helior/react-highlighter"
},
"keywords": [
"react-component",
"react",
"highlight"
],
"author": "Helior Colorado",
"license": "MIT",
"bugs": {
"url": "https://github.com/helior/react-highlighter/issues"
},
"homepage": "https://github.com/helior/react-highlighter",
"devDependencies": {
"chai": "^3.5.0",
"coveralls": "^2.11.9",
"istanbul": "^0.4.4",
"jsdom": "^9.4.0",
"mocha": "^2.5.3",
"react": "^15.2.0",
"react-dom": "^15.2.0",
"webpack": "^1.13.1"
},
"dependencies": {
"blacklist": "^1.1.2",
"create-react-class": "^15.5.2",
"escape-string-regexp": "^1.0.5",
"prop-types": "^15.5.8"
}
}