Skip to content

Commit

Permalink
Package updates.
Browse files Browse the repository at this point in the history
  • Loading branch information
mayfield committed Nov 25, 2017
1 parent 5382bd8 commit d2adbc8
Show file tree
Hide file tree
Showing 5 changed files with 49 additions and 56 deletions.
36 changes: 36 additions & 0 deletions .eslintrc.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,36 @@
{
"parserOptions": {
"ecmaVersion": 8
},
"env": {
"es6": true,
"browser": true
},
"globals": {
"F": true,
"_": true,
"$": true
},
"extends": "eslint:recommended",
"rules": {
"quotes": "off",
"semi": [
"error",
"always"
],
"no-console": "off",
"no-debugger": "off",
"no-unused-vars": [
"error",
{
"args": "none"
}
],
"no-constant-condition": [
"error",
{
"checkLoops": false
}
]
}
}
2 changes: 1 addition & 1 deletion Gruntfile.js
Original file line number Diff line number Diff line change
Expand Up @@ -53,7 +53,7 @@ module.exports = function(grunt) {
"blueimp-md5/js/md5.min.js", // Cleaner than !min version
"emojijs/lib/emoji.js",
"jquery-oembed-all/jquery.oembed.js",
"dompurify/src/purify.js",
"dompurify/dist/purify.js",
"platform.js/platform.js",
"../lib/forstadown.js",
"../lib/async_queue.js",
Expand Down
2 changes: 1 addition & 1 deletion Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@ $(BOWER): $(PACKAGES) bower.json Makefile

ifneq ($(NODE_ENV),production)
$(LINT): $(SRC)
$(NPATH)/eslint app lib
$(NPATH)/eslint app lib worker
touch $@

$(TEST): $(SRC) $(shell find tests -type f)
Expand Down
16 changes: 6 additions & 10 deletions bower.json
Original file line number Diff line number Diff line change
@@ -1,25 +1,21 @@
{
"name": "relay-web-app",
"version": "0.3.0",
"homepage": "https://github.com/forstalabs/relay-web-app",
"license": "GPLv3",
"private": true,
"dependencies": {
"jquery": "3.2.1",
"underscore": "1.8.3",
"backbone": "1.3.3",
"protobuf": "3.8.0",
"mustache": "0.8.2",
"qrcode": "https://github.com/davidshimjs/qrcodejs.git#1c78ccd71",
"moment": "2.14.0",
"handlebars": "4.0.10",
"blueimp-md5": "2.7.0",
"dompurify": "dompurify#0.9.0",
"moment": "2.19.2",
"handlebars": "4.0.11",
"blueimp-md5": "2.10.0",
"dompurify": "1.0.2",
"platform.js": "platform#1.3.4",
"raven-js": "3.18.1",
"raven-js": "3.20.1",
"emojijs": "https://github.com/iamcal/js-emoji.git#v3.2.2",
"emoji-data": "3.0.0",
"blueimp-load-image": "2.12.2",
"blueimp-load-image": "2.17.1",
"jquery-oembed-all": "https://github.com/nfl/jquery-oembed-all.git#fbc982e76c",
"quill": "1.3.1"
}
Expand Down
49 changes: 5 additions & 44 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -21,62 +21,23 @@
"url": "https://github.com/forstalabs/relay-web-app/issues"
},
"homepage": "https://github.com/forstalabs/relay-web-app",
"eslintConfig": {
"parserOptions": {
"ecmaVersion": 8
},
"env": {
"browser": true,
"es6": true
},
"globals": {
"F": true,
"_": true,
"$": true
},
"extends": "eslint:recommended",
"rules": {
"quotes": "off",
"semi": [
"error",
"always"
],
"no-console": "off",
"no-debugger": "off",
"no-unused-vars": [
"error",
{
"args": "none"
}
],
"no-constant-condition": [
"error",
{
"checkLoops": false
}
]
}
},
"eslintIgnore": [
"libsignal-protocol.js"
],
"dependencies": {
"bower": "1.8.0",
"express": "4.15.3",
"bower": "1.8.2",
"express": "4.16.2",
"grunt": "1.0.1",
"grunt-cli": "1.2.0",
"grunt-contrib-concat": "1.0.1",
"grunt-contrib-copy": "1.0.0",
"grunt-contrib-sass": "1.0.0",
"grunt-contrib-uglify": "github:gruntjs/grunt-contrib-uglify.git#harmony",
"grunt-contrib-uglify": "github:gruntjs/grunt-contrib-uglify#harmony",
"http-proxy": "1.16.2",
"librelay-web": "github:ForstaLabs/librelay-web#ffd8bd74be08",
"libsignal-protocol": "github:ForstaLabs/libsignal-protocol-javascript#ec2b471fb7af",
"morgan": "1.8.2",
"morgan": "1.9.0",
"semantic-ui": "2.2.13"
},
"devDependencies": {
"eslint": "4.2.0",
"eslint": "4.11.0",
"grunt-contrib-watch": "1.0.0"
}
}

0 comments on commit d2adbc8

Please sign in to comment.