forked from agentcooper/react-pdf-highlighter
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
63 lines (63 loc) · 1.7 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
{
"name": "react-pdf-highlighter",
"version": "2.1.0",
"description": "Set of React components for PDF annotation",
"main": "lib/index.js",
"scripts": {
"build": "nwb build-react-component",
"copy-flow": "flow-copy-source src lib",
"copy-styles": "cp -r src/style lib",
"copy-files": "npm run copy-flow && npm run copy-styles",
"clean": "nwb clean-module && npm clean-demo",
"start": "nwb serve-react-demo",
"test": "npm run flow",
"flow": "flow",
"precommit": "npm run flow",
"deploy": "npm run build && gh-pages --dist ./demo/dist --branch gh-pages",
"prepublishOnly": "npm run build && npm run copy-files",
"prettier": "prettier --write 'src/**/*.js' 'demo/src/**/*.js'"
},
"dependencies": {
"lodash": "^4.17.10",
"pdfjs-dist": "2.0.489",
"react-pointable": "^1.1.1",
"react-rnd": "^7.1.5"
},
"peerDependencies": {
"react": ">=0.14",
"react-dom": ">=0.14"
},
"devDependencies": {
"flow-bin": "0.73.0",
"flow-copy-source": "^1.1.0",
"gh-pages": "0.11.0",
"husky": "0.11.9",
"nwb": "0.21.0",
"prettier": "^1.8.2",
"react": "^15.4.2",
"react-dom": "^15.4.2",
"url-search-params": "0.6.1"
},
"author": "Artem Tyurin <[email protected]>",
"license": "MIT",
"keywords": [
"pdf",
"highlight",
"annotator",
"react-component"
],
"files": [
"lib"
],
"directories": {
"lib": "lib"
},
"repository": {
"type": "git",
"url": "git+https://github.com/agentcooper/react-pdf-highlighter.git"
},
"bugs": {
"url": "https://github.com/agentcooper/react-pdf-highlighter/issues"
},
"homepage": "https://github.com/agentcooper/react-pdf-highlighter#readme"
}