-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
57 lines (57 loc) · 1.37 KB
/
package.json
File metadata and controls
57 lines (57 loc) · 1.37 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
{
"name": "react-documentviewer",
"version": "0.0.1",
"description": "React Documentviewer for various mimetypes",
"keywords": [
"react",
"documentviewer",
"viewer",
"pdf"
],
"bugs": {
"url": "https://github.com/rusty1s/react-documentviewer/issues",
"email": "matthias.fey@tu-dortmund.de"
},
"license": "MIT",
"author": {
"name": "Matthias Fey",
"email": "matthias.fey@tu-dortmund.de"
},
"files": [
"dist"
],
"main": "dist/src/index.js",
"repository": {
"type": "git",
"url": "https://github.com/rusty1s/react-documentviewer"
},
"engines": {
"node": ">=4",
"npm": ">=3"
},
"scripts": {
"lint:js": "react-dev-config lint js",
"lint:js:fix": "npm run lint:js -- --fix",
"lint:css": "react-dev-config lint css",
"lint": "npm-run-all lint:*",
"start": "react-dev-config start",
"transpile": "react-dev-config transpile src/index.jsx",
"test": "react-dev-config test",
"test:watch": "npm test -- --watch"
},
"pre-commit": [
"lint",
"test"
],
"devDependencies": {
"enzyme": "^2.7.1",
"pre-commit": "^1.1.3",
"react-dev-config": "^2.1.1",
"react-pattern-library": "git+https://github.com/rusty1s/react-pattern-library.git"
},
"peerDependencies": {
"react": "^0.14.0 || ^15.0.0",
"react-dom": "^0.14.0 || ^15.0.0"
},
"dependencies": {}
}