rats-search/package.json
semantic-release-bot ef280a3fc3 chore(release): 0.20.0 [skip ci]
<a name="0.20.0"></a>
# [0.20.0](https://github.com/DEgITx/rats-search/compare/v0.19.2...v0.20.0) (2018-05-20)

### Bug Fixes

* **cicleci:** fix build on cicleci ([d9ca345](https://github.com/DEgITx/rats-search/commit/d9ca345))
* **header:** fix advanced search ([1907f68](https://github.com/DEgITx/rats-search/commit/1907f68))
* **header:** fix header wrap ([5257ffd](https://github.com/DEgITx/rats-search/commit/5257ffd))
* **header:** more enchantment over header ([006bb2c](https://github.com/DEgITx/rats-search/commit/006bb2c))
* **header:** normal error padding on search panel ([eadbcde](https://github.com/DEgITx/rats-search/commit/eadbcde))
* **log:** clear query log on every start ([bcc8e8f](https://github.com/DEgITx/rats-search/commit/bcc8e8f))
* **search:** fix container width ([5ae7106](https://github.com/DEgITx/rats-search/commit/5ae7106))
* **search:** fix search more button indication on peer search ([5549c12](https://github.com/DEgITx/rats-search/commit/5549c12))
* **top:** bold like styling on tab chose ([5552284](https://github.com/DEgITx/rats-search/commit/5552284))
* **translations:** checked language at menu ([520a359](https://github.com/DEgITx/rats-search/commit/520a359))
* **translations:** init app translations ([8cd1309](https://github.com/DEgITx/rats-search/commit/8cd1309))
* **translations:** more translations ([b3e04f5](https://github.com/DEgITx/rats-search/commit/b3e04f5))

### Features

* **core:** dependency update ([e75cb48](https://github.com/DEgITx/rats-search/commit/e75cb48))
* **core:** more deps update ([542dd2e](https://github.com/DEgITx/rats-search/commit/542dd2e))
* **filtering:** negative name filter ([b16ca68](https://github.com/DEgITx/rats-search/commit/b16ca68))
* **header:** statistic panel interface ([71c86e2](https://github.com/DEgITx/rats-search/commit/71c86e2))
* **p2p:** mapping all peers dicts ([ba5fb63](https://github.com/DEgITx/rats-search/commit/ba5fb63))
* **p2p:** peerId protocol handshake ([a216279](https://github.com/DEgITx/rats-search/commit/a216279))
* **search:** moved search to header (now search are always on) ([5a870a0](https://github.com/DEgITx/rats-search/commit/5a870a0))
* **top:** top over different time over all types [#26](https://github.com/DEgITx/rats-search/issues/26) ([663325a](https://github.com/DEgITx/rats-search/commit/663325a))
* **translations:** basic translations support ([87f23e7](https://github.com/DEgITx/rats-search/commit/87f23e7))
* **translations:** generate words on translation ([d24c793](https://github.com/DEgITx/rats-search/commit/d24c793))
* **translations:** menu translations ([8f76005](https://github.com/DEgITx/rats-search/commit/8f76005))
* **translations-ru:** more translations (part 2) ([7f91b9e](https://github.com/DEgITx/rats-search/commit/7f91b9e))
* **translations-ru:** translation to russian (part 1) ([09688e6](https://github.com/DEgITx/rats-search/commit/09688e6))
2018-05-20 21:55:09 +00:00

171 lines
4.4 KiB
JSON

{
"name": "rats-search",
"productName": "Rats on The Boat",
"description": "P2P BitTorrent search engine",
"version": "0.20.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"
},
"serverDataDirectory": "./",
"build": {
"appId": "com.ratsontheboat.search",
"files": [
"app/**/*",
"node_modules/**/*",
"package.json"
],
"extraResources": [
{
"from": "resources/icons/512x512.png",
"to": "icons/512x512.png"
},
{
"from": "resources/icons/19x19.png",
"to": "icons/19x19.png"
},
"translations",
"CHANGELOG.md"
],
"directories": {
"buildResources": "resources"
},
"nsis": {
"artifactName": "Rats.on.The.Boat-${version}.${ext}"
},
"publish": {
"provider": "github"
},
"win": {
"extraFiles": [
{
"from": "./imports/win",
"to": "."
}
],
"target": [
{
"target": "nsis",
"arch": [
"x64",
"ia32"
]
}
]
},
"linux": {
"category": "Network",
"target": [
{
"target": "AppImage",
"arch": [
"x64",
"ia32"
]
},
{
"target": "rpm",
"arch": [
"x64",
"ia32"
]
},
{
"target": "deb",
"arch": [
"x64",
"ia32"
]
}
],
"extraFiles": [
{
"from": "./imports/linux",
"to": "."
}
]
},
"mac": {
"artifactName": "${name}-${version}-mac.${ext}",
"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",
"server": "node src/background/server.js",
"buildweb": "node src/background/webpack.js"
},
"dependencies": {
"bencode": "^1.0.0",
"bitfield": "^1.1.2",
"compare-versions": "^3.1.0",
"debug": "^3.1.0",
"electron-context-menu": "^0.9.1",
"electron-log": "^2.2.14",
"electron-updater": "^2.21.10",
"fs-jetpack": "^1.2.0",
"iconv-lite": "^0.4.19",
"ipaddr.js": "^1.5.4",
"json-socket": "^0.3.0",
"lodash": "^4.17.5",
"material-ui": "^0.20.0",
"moment": "^2.20.1",
"mysql": "^2.15.0",
"nat-upnp": "^1.1.1",
"object-hash": "^1.3.0",
"react": "^16.3.2",
"react-dom": "^16.3.2",
"react-input-range": "^1.3.0",
"react-markdown": "^3.1.5",
"react-tap-event-plugin": "^3.0.2",
"simple-encryptor": "^1.2.0",
"stun": "^1.1.0",
"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.1.1",
"@semantic-release/exec": "^2.2.3",
"@semantic-release/git": "^3.1.1",
"@semantic-release/npm": "^3.2.2",
"babel-loader": "^8.0.0-beta.2",
"babel-plugin-transform-object-rest-spread": "^7.0.0-beta.3",
"chai": "^4.1.2",
"css-loader": "^0.28.11",
"electron": "2.0.1",
"electron-builder": "^20.13.3",
"express": "^4.16.3",
"friendly-errors-webpack-plugin": "^1.6.1",
"html-webpack-plugin": "^3.2.0",
"mocha": "^5.1.1",
"socket.io": "^2.1.0",
"source-map-support": "^0.5.0",
"spectron": "^3.8.0",
"style-loader": "^0.21.0",
"sw-precache-webpack-plugin": "^0.11.5",
"url-loader": "^1.0.1",
"webpack": "^4.8.3",
"webpack-cli": "^2.1.3",
"webpack-merge": "^4.1.2",
"webpack-node-externals": "^1.7.2"
}
}