fimfic2epub/package.json

81 lines
2 KiB
JSON
Raw Normal View History

2016-06-20 08:28:28 +12:00
{
2016-06-24 01:26:01 +12:00
"name": "fimfic2epub",
2017-10-19 01:59:49 +13:00
"version": "1.6.5",
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": {
2018-03-13 10:03:58 +13:00
"build": "NODE_ENV=production gulp",
"dev": "NODE_ENV=development gulp"
},
"bin": {
2016-08-15 08:42:57 +12:00
"fimfic2epub": "./bin/fimfic2epub"
2016-06-21 23:38:30 +12:00
},
2018-03-13 10:03:58 +13:00
"main": "dist/fimfic2epub.js",
2016-08-15 08:42:57 +12:00
"files": [
2018-03-13 10:03:58 +13:00
"dist/",
2016-08-15 08:42:57 +12:00
"bin/"
],
2016-06-20 08:28:28 +12:00
"dependencies": {
"detect-node": "^2.0.3",
"escape-string-regexp": "^1.0.5",
2017-10-19 01:59:49 +13:00
"file-type": "^7.2.0",
2016-06-21 09:04:08 +12:00
"html-entities": "^1.2.0",
2017-10-19 01:59:49 +13:00
"html-to-text": "^3.3.0",
"image-size": "^0.6.1",
"is-svg": "^2.1.0",
2017-10-19 01:59:49 +13:00
"jszip": "^3.1.4",
"match-words": "^1.0.0",
"mithril": "^1.1.5",
"mithril-node-render": "^2.2.0",
"pretty-data": "^0.40.0",
2017-10-19 01:59:49 +13:00
"request": "^2.83.0",
2016-08-15 21:11:20 +12:00
"sanitize-filename": "^1.6.0",
2017-10-19 01:59:49 +13:00
"twemoji": "^2.5.0",
2016-06-23 00:48:51 +12:00
"zero-fill": "^2.2.3"
2016-06-21 09:04:08 +12:00
},
"devDependencies": {
2017-10-19 01:59:49 +13:00
"autosize": "^4.0.0",
"babel-core": "^6.26.0",
2018-03-13 10:03:58 +13:00
"babel-loader": "^7.1.4",
"babel-preset-env": "^1.6.1",
2016-08-29 22:12:04 +12:00
"babel-preset-es2015": "^6.14.0",
2016-08-15 21:11:20 +12:00
"babel-preset-node6": "^11.0.0",
2017-10-19 01:59:49 +13:00
"babel-register": "^6.26.0",
"del": "^3.0.0",
"es6-event-emitter": "^1.10.2",
2018-03-13 10:03:58 +13:00
"exports-loader": "^0.7.0",
2016-08-15 21:11:20 +12:00
"file-saver": "^1.3.2",
2018-03-13 10:03:58 +13:00
"font-awesome": "4.7.0",
2016-06-21 09:04:08 +12:00
"gulp": "^3.9.1",
2018-03-13 10:03:58 +13:00
"gulp-change": "^1.0.0",
2017-10-19 01:59:49 +13:00
"gulp-filter": "^5.0.1",
2016-06-22 01:19:36 +12:00
"gulp-json-editor": "^2.2.1",
2018-03-13 10:03:58 +13:00
"gulp-rename": "^1.2.2",
2017-10-19 01:59:49 +13:00
"gulp-standard": "^10.1.1",
2016-06-21 09:04:08 +12:00
"gulp-util": "^3.0.7",
2018-03-13 10:03:58 +13:00
"gulp-watch": "^5.0.0",
2017-10-19 01:59:49 +13:00
"gulp-zip": "^4.0.0",
2016-06-21 09:04:08 +12:00
"lazypipe": "^1.0.1",
2018-03-13 10:03:58 +13:00
"merge-stream": "^1.0.1",
2016-06-21 21:32:49 +12:00
"raw-loader": "^0.5.1",
2017-10-19 01:59:49 +13:00
"run-sequence": "^2.2.0",
2018-03-13 10:03:58 +13:00
"standard": "^11.0.0",
2016-08-15 08:42:57 +12:00
"stylus": "^0.54.5",
2017-10-19 01:59:49 +13:00
"stylus-loader": "^3.0.1",
2018-03-13 10:03:58 +13:00
"webpack": "^4.1.1",
2016-08-15 08:42:57 +12:00
"webpack-node-externals": "^1.3.3"
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
}
}