forked from gerhardsletten/react-reader
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
75 lines (75 loc) · 2.29 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
{
"name": "react-reader",
"version": "0.15.0",
"description": "A epub-reader for React powered by ePubJS",
"main": "lib/index.js",
"scripts": {
"compile": "NODE_ENV=production babel --optional runtime -d lib/ src/",
"prepublish": "npm run compile",
"start": "webpack-dev-server --port 3001 --host 0.0.0.0 --progress --colors --config ./webpack.config.js",
"build": "webpack -p --verbose --colors --display-error-details --config ./webpack.build.config.js",
"lint": "eslint -c .eslintrc src demo; exit 0",
"deploy": "gh-pages-deploy",
"clean-source": "rimraf demo lib src www .babelrc .eslintrc .npmignore package.json README.md webpack.build.config.js webpack.config.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/gerhardsletten/react-reader.git"
},
"author": "Eyvind Gerhard Sletten",
"license": "ISC",
"bugs": {
"url": "https://github.com/gerhardsletten/react-reader/issues"
},
"standard": {
"parser": "babel-eslint"
},
"homepage": "https://github.com/gerhardsletten/react-reader#readme",
"devDependencies": {
"babel-cli": "^6.24.0",
"babel-core": "^6.24.0",
"babel-eslint": "^7.2.1",
"babel-loader": "^6.4.1",
"babel-plugin-add-module-exports": "^0.2.1",
"babel-polyfill": "^6.23.0",
"babel-preset-es2015": "^6.24.0",
"babel-preset-react": "^6.23.0",
"babel-preset-stage-0": "^6.22.0",
"css-loader": "^0.27.3",
"eslint": "^3.18.0",
"eslint-config-standard": "^7.1.0",
"eslint-config-standard-react": "^4.3.0",
"eslint-loader": "^1.7.0",
"eslint-plugin-promise": "^3.5.0",
"eslint-plugin-react": "^6.10.3",
"eslint-plugin-standard": "^2.1.1",
"file-loader": "^0.10.1",
"gh-pages-deploy": "^0.4.2",
"react": "^15.5.4",
"react-dom": "^15.5.4",
"react-hot-loader": "^3.0.0-beta.6",
"rimraf": "^2.6.1",
"standard": "^9.0.2",
"style-loader": "^0.16.0",
"webpack": "^2.3.2",
"webpack-dev-server": "^2.4.2"
},
"dependencies": {
"@gerhardsletten/epubjs": "0.3.35",
"prop-type": "0.0.1",
"react-swipeable": "^4.0.0"
},
"peerDependencies": {
"react": ">=15.0.0"
},
"gh-pages-deploy": {
"staticpath": "www",
"prep": [
"build"
],
"post": [
"clean-source"
],
"noprompt": false
}
}