forked from plangrid/react-file-viewer
-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpackage.json
More file actions
125 lines (125 loc) · 3.5 KB
/
package.json
File metadata and controls
125 lines (125 loc) · 3.5 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
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
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
{
"name": "@amdglobal/react-file-viewer",
"version": "1.3.2",
"description": "Extendable file viewer for web",
"main": "lib/components/index.js",
"module": "lib/components/index.js",
"repository": {
"type": "git",
"url": "git+https://github.com/plangrid/react-file-viewer.git"
},
"scripts": {
"dev": "webpack serve",
"build": "babel --out-dir lib src --copy-files",
"lint": "node_modules/.bin/eslint ./src/**/*.jsx",
"test": "node_modules/.bin/jest --env=jsdom --watch",
"jest": "node_modules/.bin/jest --env=jsdom",
"prepublish": "npm run build"
},
"author": "PlanGrid <opensource@plangrid.com>",
"contributors": [
{
"name": "Alexei Schiopu",
"email": "alexxschiopu@gmail.com",
"url": "http://schiopu.me"
},
{
"name": "Aaron Norby",
"email": "aaron.norby@gmail.com"
},
{
"name": "Viktoriya Savkina",
"email": "viktoriya.savkina@gmail.com"
},
{
"name": "Zachary Hueras",
"email": "zachary.hueras@gmail.com"
}
],
"license": "MIT",
"bugs": {
"url": "https://github.com/plangrid/react-file-viewer/issues"
},
"homepage": "https://github.com/plangrid/react-file-viewer#readme",
"devDependencies": {
"@babel/cli": "^7.14.5",
"@babel/core": "^7.14.6",
"@babel/preset-env": "^7.14.7",
"autoprefixer": "^7.1.0",
"babel-loader": "^8.2.2",
"chalk": "^1.1.3",
"css-loader": "^5.2.6",
"enzyme": "^3.8.0",
"eslint": "^3.19.0",
"eslint-config-airbnb": "^15.0.1",
"eslint-import-resolver-webpack": "^0.8.1",
"eslint-loader": "^1.7.1",
"eslint-plugin-import": "^2.2.0",
"eslint-plugin-jsx-a11y": "^5.0.3",
"eslint-plugin-react": "^7.0.1",
"file-loader": "^6.2.0",
"inquirer": "^3.0.6",
"jest": "^25.3.0",
"node-sass": "^6.0.1",
"postcss-loader": "^2.0.5",
"react": "^16.6.3 || ^17.0.0",
"react-dom": "^16.6.3 || ^17.0.0",
"react-test-renderer": "^16.6.3 || ^17.0.0",
"sass-loader": "^12.1.0",
"stream-browserify": "^2.0.2",
"style-loader": "^3.0.0",
"url-loader": "^4.1.1",
"web-streams-polyfill": "^3.0.3",
"webpack": "^5.0.0",
"webpack-cli": "^4.7.2",
"webpack-dev-server": "^3.0.0"
},
"dependencies": {
"@babel/plugin-transform-runtime": "^7.11.5",
"@babel/preset-react": "^7.10.4",
"@babel/runtime": "^7.11.2",
"comma-separated-values": "^3.6.4",
"mammoth": "^1.4.11",
"prop-types": "^15.5.10",
"react-data-grid": "7.0.0-canary.30",
"react-visibility-sensor": "^5.1.1",
"slash": "^3.0.0",
"three": "0.85.2",
"xlsx": "^0.17.0"
},
"peerDependencies": {
"pdfjs-dist": "^2.8.335",
"react": "^16.6.3 || ^17.0.0",
"react-dom": "^16.6.3 || ^17.0.0"
},
"jest": {
"testPathIgnorePatterns": [
"<rootDir>[/\\\\](build|node_modules|scripts|example_files)[/\\\\]"
],
"testEnvironment": "node",
"transform": {
"^.+\\.(js|jsx)$": "<rootDir>/node_modules/babel-jest",
"^.+\\.(css|scss)$": "<rootDir>/config/jest/cssTransform.js",
"^(?!.*\\.(js|jsx|css|json)$)": "<rootDir>/config/jest/fileTransform.js"
},
"transformIgnorePatterns": [
"[/\\\\]node_modules[/\\\\].+\\.(js|jsx)$"
],
"moduleDirectories": [
"src",
"node_modules"
],
"setupTestFrameworkScriptFile": "<rootDir>/tests/setupTests.js"
},
"eslintConfig": {
"extends": "airbnb",
"plugins": [
"import"
],
"settings": {
"import/resolver": {
"webpack": "webpack.config.js"
}
}
}
}