-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
executable file
·86 lines (86 loc) · 2.61 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
{
"name": "saiku-react-pdfjs",
"description": "A React component to wrap PDF.js",
"homepage": "https://github.com/OSBI/saiku-react-pdfjs#readme",
"version": "1.0.2",
"author": {
"name": "Meteorite BI",
"email": "[email protected]",
"web": "http://www.meteorite.bi"
},
"contributors": [
{
"name": "Breno Polanski",
"url": "https://github.com/brenopolanski"
},
{
"name": "Bruno Gama Catão",
"url": "https://github.com/brunogamacatao"
},
{
"name": "Tom Barber",
"url": "https://github.com/buggtb"
}
],
"repository": {
"type": "git",
"url": "git+https://github.com/OSBI/saiku-react-pdfjs.git"
},
"license": "Apache-2.0",
"keywords": [
"react",
"reactjs",
"react-pdf",
"pdf",
"pdf-viewer",
"pdfjs"
],
"bugs": {
"url": "https://github.com/OSBI/saiku-react-pdfjs/issues"
},
"main": "dist/index.js",
"scripts": {
"test": "yarn run storyshots",
"storyshots": "storyshots -c storybook",
"storyshots:fix": "yarn run storyshots -- -u",
"storybook": "webpack-dashboard -- start-storybook -p 3000 -c storybook",
"build": "cross-env NODE_ENV=production webpack --progress --config storybook/webpack.prod.config -p",
"build:storybook": "cross-env NODE_ENV=production build-storybook -c storybook -o docs",
"update:dev": "git pull origin dev",
"update:master": "git push origin dev && git checkout master && git merge dev && git push origin master --tags && git checkout dev",
"commit:build": "git add . && git commit --allow-empty -S -m 'Minifying'",
"preversion": "yarn run update:dev && yarn run build && yarn build:storybook && yarn commit:build",
"postversion": "npm publish && yarn run update:master"
},
"dependencies": {
"pdfjs-dist": "^1.7.365"
},
"peerDependencies": {
"react": "^15.4.2",
"react-dom": "^15.4.2",
"pdfjs-dist": "^1.7.365"
},
"devDependencies": {
"@kadira/storybook": "^2.29.7",
"@kadira/storyshots": "^2.1.0",
"babel-core": "^6.18.2",
"babel-eslint": "^7.1.1",
"babel-loader": "^6.2.7",
"babel-preset-es2015": "^6.18.0",
"babel-preset-react": "^6.16.0",
"babel-preset-stage-0": "^6.16.0",
"cross-env": "^3.1.3",
"eslint": "^3.12.2",
"eslint-loader": "^1.6.1",
"eslint-plugin-flowtype": "^2.29.2",
"eslint-plugin-import": "^2.2.0",
"eslint-plugin-jsx-a11y": "^3.0.2",
"eslint-plugin-mocha": "^4.8.0",
"eslint-plugin-react": "^6.8.0",
"react": "^15.4.2",
"react-dom": "^15.4.2",
"webpack": "^1.13.3",
"webpack-dashboard": "^0.2.0",
"webpack-validator": "^2.2.9"
}
}