Files
rats-search/package.json
semantic-release-bot 58ab8da8c2 chore(release): 0.4.0 [skip ci]
<a name="0.4.0"></a>
# [0.4.0](https://github.com/DEgITx/rats-search/compare/v0.3.1...v0.4.0) (2018-02-10)

### Bug Fixes

* **app:** fix removing events on render process ([f1bfd41](https://github.com/DEgITx/rats-search/commit/f1bfd41))
* **app:** support additional arguments on messages ([f306c53](https://github.com/DEgITx/rats-search/commit/f306c53))
* **download:** bug when cancel button not appear in main page ([d317c30](https://github.com/DEgITx/rats-search/commit/d317c30))
* **download:** cancel controls on torrent element ([cd1f89c](https://github.com/DEgITx/rats-search/commit/cd1f89c))
* **download:** problem on dht api after delete torrent ([ea8bc01](https://github.com/DEgITx/rats-search/commit/ea8bc01))
* **image:** restored spinner on downloading metadata ([387945a](https://github.com/DEgITx/rats-search/commit/387945a))
* **unix:** resolve problem with icon part at some systems ([0e5e045](https://github.com/DEgITx/rats-search/commit/0e5e045)), closes [#3](https://github.com/DEgITx/rats-search/issues/3)

### Features

* **config:** download torrents directory in config ([9ac5539](https://github.com/DEgITx/rats-search/commit/9ac5539))
* **download:** basic torrent download support ([0abd516](https://github.com/DEgITx/rats-search/commit/0abd516))
* **download:** cancel downloading ([fd03491](https://github.com/DEgITx/rats-search/commit/fd03491))
* **download:** more control over torrent download ([395a30e](https://github.com/DEgITx/rats-search/commit/395a30e))
* **download:** torrent progress on torrent element ([70a7daa](https://github.com/DEgITx/rats-search/commit/70a7daa))
* **menu:** new context menu with copy/paste ([2bf8970](https://github.com/DEgITx/rats-search/commit/2bf8970))
2018-02-10 11:08:50 +00:00

116 lines
3.1 KiB
JSON

{
"name": "rats-search",
"productName": "Rats on The Boat",
"description": "P2P BitTorrent search engine",
"version": "0.4.0",
"private": true,
"author": "Alexey Kasyanchuk <degitx@gmail.com>",
"copyright": "Copyright © 2018 Alexey Kasyanchuk",
"homepage": "https://github.com/DEgITx/rats-search",
"main": "app/background.js",
"repository": {
"type": "git",
"url": "https://github.com/DEgITx/rats-search.git"
},
"build": {
"appId": "com.example.electron-boilerplate",
"files": [
"app/**/*",
"node_modules/**/*",
"package.json"
],
"extraResources": [
{
"from": "resources/icons/512x512.png",
"to": "icons/512x512.png"
},
"CHANGELOG.md"
],
"directories": {
"buildResources": "resources"
},
"publish": null,
"win": {
"extraFiles": [
{
"from": "./imports/win",
"to": "."
}
]
},
"linux": {
"category": "Network",
"target": [
"AppImage",
"rpm",
"deb"
],
"extraFiles": [
{
"from": "./imports/linux",
"to": "."
}
]
},
"mac": {
"extraFiles": [
{
"from": "./imports/darwin",
"to": "./MacOS"
}
]
}
},
"scripts": {
"postinstall": "electron-builder install-app-deps",
"pretest": "webpack --config=build/webpack.app.config.js --env=test --display=none && webpack --config=build/webpack.e2e.config.js --env=test --display=none",
"test": "mocha temp/e2e.js --require @babel/core/lib --require source-map-support/register",
"start": "node build/start.js",
"prebuild": "webpack --config=build/webpack.app.config.js --env=production",
"build": "electron-builder"
},
"dependencies": {
"bencode": "^1.0.0",
"bitfield": "^1.1.2",
"debug": "^3.1.0",
"diskusage": "^0.2.4",
"electron-context-menu": "^0.9.1",
"fs-jetpack": "^1.2.0",
"iconv-lite": "^0.4.19",
"ipaddr.js": "^1.5.4",
"material-ui": "^0.20.0",
"moment": "^2.20.1",
"mysql": "^2.15.0",
"react": "^16.2.0",
"react-dom": "^16.2.0",
"react-input-range": "^1.3.0",
"react-markdown": "^3.1.5",
"react-tap-event-plugin": "^3.0.2",
"webtorrent": "github:DEgITx/webtorrent"
},
"devDependencies": {
"@babel/core": "^7.0.0-beta.38",
"@babel/preset-env": "^7.0.0-beta.38",
"@babel/preset-react": "^7.0.0-beta.38",
"@babel/preset-stage-0": "^7.0.0-beta.38",
"@semantic-release/changelog": "^1.0.0",
"@semantic-release/exec": "^2.0.0",
"@semantic-release/git": "^3.0.0",
"babel-loader": "^8.0.0-beta.0",
"babel-plugin-transform-object-rest-spread": "^7.0.0-beta.3",
"chai": "^4.1.0",
"css-loader": "^0.28.7",
"electron": "1.7.11",
"electron-builder": "^19.43.3",
"friendly-errors-webpack-plugin": "^1.6.1",
"mocha": "^4.1.0",
"source-map-support": "^0.5.0",
"spectron": "^3.7.2",
"style-loader": "^0.19.0",
"url-loader": "^0.6.2",
"webpack": "^3.8.1",
"webpack-merge": "^4.1.0",
"webpack-node-externals": "^1.6.0"
}
}