forked from futurepress/epub.js
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
91 lines (91 loc) · 2.97 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
87
88
89
90
91
{
"name": "epubjs",
"version": "0.3.85",
"description": "Parse and Render Epubs",
"main": "lib/index.js",
"module": "src/index.js",
"types": "types/index.d.ts",
"repository": "https://github.com/futurepress/epub.js",
"directories": {
"test": "test"
},
"scripts": {
"test": "./node_modules/.bin/karma start --single-run --browsers ChromeHeadlessNoSandbox",
"documentation": "./node_modules/.bin/gulp docs",
"lint": "./node_modules/.bin/eslint -c .eslintrc.js src; exit 0",
"start": "./node_modules/.bin/webpack-dev-server --inline --d",
"build": "./node_modules/.bin/webpack --progress",
"minify": "NODE_ENV=production npm run build",
"legacy": "LEGACY=true npm run build",
"productionLegacy": "NODE_ENV=production LEGACY=true npm run build",
"compile": "./node_modules/.bin/babel --optional runtime -d lib/ src/",
"watch": "./node_modules/.bin/babel --watch --optional runtime -d lib/ src/",
"serve": "./node_modules/.bin/gulp serve",
"prepare": "npm run compile && npm run build && npm run minify && npm run legacy && npm run productionLegacy"
},
"author": "[email protected]",
"license": "BSD-2-Clause",
"devDependencies": {
"babel-cli": "^6.26.0",
"babel-core": "^6.26.3",
"babel-loader": "^7.1.5",
"babel-plugin-add-module-exports": "^0.2.1",
"babel-plugin-transform-runtime": "^6.23.0",
"babel-polyfill": "^6.26.0",
"babel-preset-env": "1.6.0",
"babel-preset-es2015": "^6.24.1",
"babili-webpack-plugin": "0.1.2",
"colors": "^1.3.0",
"connect": "^3.6.6",
"documentation": "^5.5.0",
"eslint": "^4.19.1",
"express": "^4.16.3",
"gulp": "^3.9.1",
"gulp-concat": "^2.6.1",
"gulp-connect": "~5.0.0",
"gulp-documentation": "3.2.1",
"gulp-jshint": "^2.1.0",
"gulp-plumber": "^1.2.0",
"gulp-rename": "^1.3.0",
"gulp-size": "^2.1.0",
"gulp-sourcemaps": "^2.6.4",
"gulp-uglify": "^3.0.0",
"gulp-util": "^3.0.8",
"jsdoc": "^3.5.5",
"jshint": "^2.9.5",
"karma": "^1.7.1",
"karma-chrome-launcher": "^2.2.0",
"karma-mocha": "^1.3.0",
"karma-mocha-reporter": "^2.2.5",
"karma-phantomjs-launcher": "^1.0.4",
"karma-sourcemap-loader": "^0.3.7",
"karma-webpack": "^2.0.13",
"mocha": "^3.5.3",
"mocha-loader": "^1.1.3",
"morgan": "^1.9.0",
"optimist": "^0.6.1",
"portfinder": "^1.0.13",
"raw-loader": "^0.5.1",
"serve-static": "^1.13.2",
"tsd-jsdoc": "^2.0.0-beta.6",
"uglify": "^0.1.5",
"vinyl-buffer": "^1.0.1",
"vinyl-source-stream": "^1.1.2",
"webpack": "^3.12.0",
"webpack-dev-middleware": "^1.12.2",
"webpack-dev-server": "^2.11.2"
},
"dependencies": {
"@types/jszip": "^3.1.4",
"@types/localforage": "0.0.34",
"event-emitter": "^0.3.5",
"jszip": "^3.1.5",
"localforage": "^1.7.2",
"lodash": "^4.17.10",
"marks-pane": "^1.0.9",
"path-webpack": "0.0.3",
"stream-browserify": "^2.0.1",
"url-polyfill": "^1.1.3",
"xmldom": "^0.1.27"
}
}