fimfic2epub/package.json

70 lines
1.6 KiB
JSON
Raw Normal View History

2016-06-20 08:28:28 +12:00
{
2016-06-24 01:26:01 +12:00
"name": "fimfic2epub",
2016-08-19 22:35:58 +12:00
"version": "1.2.2",
2016-08-19 21:44:53 +12:00
"description": "Tool to generate improved EPUB ebooks from Fimfiction stories",
"author": "djazz",
2016-08-17 00:28:21 +12:00
"repository": {
"type": "git",
"url": "https://github.com/daniel-j/fimfic2epub.git"
},
2016-06-21 23:38:30 +12:00
"scripts": {
2016-06-28 09:19:56 +12:00
"build": "gulp -p"
},
"bin": {
2016-08-15 08:42:57 +12:00
"fimfic2epub": "./bin/fimfic2epub"
2016-06-21 23:38:30 +12:00
},
2016-08-15 08:42:57 +12:00
"main": "fimfic2epub.js",
2016-08-15 21:11:20 +12:00
2016-08-15 08:42:57 +12:00
"files": [
"fimfic2epub.js",
2016-08-15 21:11:20 +12:00
"fimfic2epub.js.map",
2016-08-15 08:42:57 +12:00
"bin/"
],
2016-08-15 21:11:20 +12:00
2016-06-20 08:28:28 +12:00
"dependencies": {
"detect-node": "^2.0.3",
"escape-string-regexp": "^1.0.5",
2016-06-21 09:04:08 +12:00
"html-entities": "^1.2.0",
2016-08-11 23:07:17 +12:00
"image-size": "^0.5.0",
2016-08-15 06:31:28 +12:00
"jszip": "^3.1.1",
2016-06-20 08:28:28 +12:00
"mithril": "^0.2.5",
"pretty-data": "^0.40.0",
2016-08-15 06:31:28 +12:00
"request": "^2.74.0",
2016-08-15 21:11:20 +12:00
"sanitize-filename": "^1.6.0",
2016-06-23 00:48:51 +12:00
"tidy-html5": "^0.1.1",
"zero-fill": "^2.2.3"
2016-06-21 09:04:08 +12:00
},
"devDependencies": {
2016-08-15 06:31:28 +12:00
"babel-core": "^6.13.2",
2016-06-21 09:04:08 +12:00
"babel-loader": "^6.2.4",
2016-08-15 21:11:20 +12:00
"babel-preset-es2015": "^6.13.2",
"babel-preset-node6": "^11.0.0",
"babel-register": "^6.11.6",
2016-08-15 06:31:28 +12:00
"del": "^2.2.2",
2016-06-21 19:55:43 +12:00
"exports-loader": "^0.6.3",
2016-08-15 21:11:20 +12:00
"file-saver": "^1.3.2",
2016-06-21 09:04:08 +12:00
"gulp": "^3.9.1",
2016-06-21 19:14:57 +12:00
"gulp-filter": "^4.0.0",
2016-06-22 01:19:36 +12:00
"gulp-json-editor": "^2.2.1",
2016-06-21 18:39:26 +12:00
"gulp-standard": "^7.0.1",
2016-06-21 09:04:08 +12:00
"gulp-util": "^3.0.7",
2016-08-15 06:31:28 +12:00
"gulp-watch": "^4.3.9",
2016-06-22 01:19:36 +12:00
"gulp-zip": "^3.2.0",
2016-06-21 09:04:08 +12:00
"lazypipe": "^1.0.1",
2016-06-21 21:32:49 +12:00
"raw-loader": "^0.5.1",
2016-08-15 06:31:28 +12:00
"run-sequence": "^1.2.2",
2016-06-21 18:39:26 +12:00
"standard": "^7.1.2",
2016-08-15 08:42:57 +12:00
"stylus": "^0.54.5",
2016-08-15 06:31:28 +12:00
"stylus-loader": "^2.2.0",
2016-08-16 01:12:20 +12:00
"webpack": "^2.1.0-beta.20",
2016-08-15 08:42:57 +12:00
"webpack-node-externals": "^1.3.3"
2016-06-21 18:39:26 +12:00
},
2016-08-15 21:11:20 +12:00
2016-06-21 18:39:26 +12:00
"standard": {
"env": {
2016-06-22 01:19:36 +12:00
"browser": true
},
"globals": ["FIMFIC2EPUB_VERSION"]
2016-06-20 08:28:28 +12:00
}
}