aboutsummaryrefslogtreecommitdiff
path: root/package.json
diff options
context:
space:
mode:
authorFrançois Schmidts <francois.schmidts@gmail.com>2016-01-29 21:08:31 +0100
committerFrançois Schmidts <francois.schmidts@gmail.com>2016-01-29 21:08:31 +0100
commit6d681cba9d4da213d3de727570f17d2361f599de (patch)
treeee33d4f5cecd00688d8650f98da56d558700196f /package.json
parentimpact on menus when loading article (diff)
downloadnewspipe-6d681cba9d4da213d3de727570f17d2361f599de.tar.gz
newspipe-6d681cba9d4da213d3de727570f17d2361f599de.tar.bz2
newspipe-6d681cba9d4da213d3de727570f17d2361f599de.zip
displaying date on middle panel
Diffstat (limited to 'package.json')
-rw-r--r--package.json18
1 files changed, 14 insertions, 4 deletions
diff --git a/package.json b/package.json
index c681d70f..01ab12f8 100644
--- a/package.json
+++ b/package.json
@@ -1,11 +1,20 @@
{
"name": "jarr",
"version": "0.0.1",
- "author": {"name": "François Schmidts", "email": "francois.schmidts@gmail.com", "url": "1pxsolidblack.pl"},
+ "author": {
+ "name": "François Schmidts",
+ "email": "francois.schmidts@gmail.com",
+ "url": "1pxsolidblack.pl"
+ },
"description": "jarr (Just Another RSS Reader) is a web-based news aggregator.",
- "repository": {"type": "git", "url": "https://github.com/JARR-aggregator/JARR"},
+ "repository": {
+ "type": "git",
+ "url": "https://github.com/JARR-aggregator/JARR"
+ },
"license": "GNU Affero General Public License version 3",
- "engines": {"npm": "^3.3.12"},
+ "engines": {
+ "npm": "^3.3.12"
+ },
"main": "src/web/js/app.js",
"dependencies": {
"bootstrap": "^3.3.6",
@@ -16,7 +25,8 @@
"object-assign": "^1.0.0",
"react": "^0.14.6",
"react-bootstrap": "^0.14.1",
- "react-dom": "^0.14.6"
+ "react-dom": "^0.14.6",
+ "react-intl": "^1.2.2"
},
"devDependencies": {
"browserify": "^6.2.0",
bgstack15