Skip to content

Commit

Permalink
Update modules
Browse files Browse the repository at this point in the history
  • Loading branch information
nolze committed Apr 30, 2018
1 parent fb241b6 commit b20fb6a
Show file tree
Hide file tree
Showing 5 changed files with 17,184 additions and 21,841 deletions.
39,003 changes: 17,173 additions & 21,830 deletions dist/index.js

Large diffs are not rendered by default.

16 changes: 8 additions & 8 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "maki",
"version": "0.1.0",
"version": "0.1.1",
"description": "A Dropbox-based Personal Wiki Engine",
"main": "./dist/index.js",
"repository": {
Expand All @@ -17,23 +17,23 @@
"author": "nolze",
"license": "GPL-3.0",
"dependencies": {
"dropbox": "^2.5.4",
"dropbox": "^4.0.3",
"es6-promise": "^4.1.0",
"markdown-it": "^8.3.1",
"markdown-it-deflist": "^2.0.2",
"markdown-it-katex": "^2.0.3",
"mithril": "^1.1.1",
"query-string": "^4.3.4"
"query-string": "^6.0.0"
},
"devDependencies": {
"browserify": "^14.4.0",
"eslint": "^3.19.0",
"eslint-config-standard": "^10.2.1",
"browserify": "^16.2.0",
"eslint": "^4.19.1",
"eslint-config-standard": "^11.0.0",
"eslint-plugin-import": "^2.3.0",
"eslint-plugin-node": "^5.0.0",
"eslint-plugin-node": "^6.0.1",
"eslint-plugin-promise": "^3.5.0",
"eslint-plugin-standard": "^3.0.1",
"http-server": "^0.10.0",
"http-server": "^0.11.1",
"uglify-js": "^3.0.15",
"watchify": "^3.9.0"
}
Expand Down
2 changes: 1 addition & 1 deletion src/auth.js
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

var m = require('mithril')

var Dropbox = require('dropbox')
var Dropbox = require('dropbox').Dropbox

var auth = {}
auth.config = {}
Expand Down
2 changes: 1 addition & 1 deletion src/index.js
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
'use strict'

var Dropbox = require('dropbox')
var Dropbox = require('dropbox').Dropbox
var md = null
var queryString = require('query-string')

Expand Down
2 changes: 1 addition & 1 deletion src/markdown-it-pathmod.js
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
/*! markdown-it-linkscheme v1.0.2 | MIT License | github.com/adam-p/markdown-it-linkscheme */

var Dropbox = require('dropbox');
var Dropbox = require('dropbox').Dropbox;

function getToken() {
return localStorage.getItem('token');
Expand Down

0 comments on commit b20fb6a

Please sign in to comment.