Page MenuHomeSolus

D3341.diff
No OneTemporary

D3341.diff

This file is larger than 256 KB, so syntax highlighting was skipped.
diff --git a/files/markdown-fix.patch b/files/markdown-fix.patch
new file mode 100644
--- /dev/null
+++ b/files/markdown-fix.patch
@@ -0,0 +1,12 @@
+diff -ura a/package.json b/package.json
+--- a/package.json 2018-07-18 23:21:35.000000000 -0700
++++ b/package.json 2018-07-19 09:20:02.549660073 -0700
+@@ -73,7 +73,7 @@
+ "lodash": "^4.11.1",
+ "lodash-move": "^1.1.1",
+ "markdown-it": "^6.0.1",
+- "markdown-it-admonition": "https://github.com/johannbre/markdown-it-admonition.git",
++ "markdown-it-admonition": "^1.0.4",
+ "markdown-it-emoji": "^1.1.1",
+ "markdown-it-footnote": "^3.0.0",
+ "markdown-it-imsize": "^2.0.1",
diff --git a/files/remove-analytics.patch b/files/remove-analytics.patch
--- a/files/remove-analytics.patch
+++ b/files/remove-analytics.patch
@@ -1,6 +1,6 @@
diff -ura a/browser/main/Detail/MarkdownNoteDetail.js b/browser/main/Detail/MarkdownNoteDetail.js
---- a/browser/main/Detail/MarkdownNoteDetail.js 2018-03-22 15:07:28.000000000 +0100
-+++ b/browser/main/Detail/MarkdownNoteDetail.js 2018-03-22 16:05:48.568143378 +0100
+--- a/browser/main/Detail/MarkdownNoteDetail.js 2018-07-19 08:21:35.000000000 +0200
++++ b/browser/main/Detail/MarkdownNoteDetail.js 2018-07-19 12:13:11.146091379 +0200
@@ -15,7 +15,6 @@
import StatusBar from '../StatusBar'
import _ from 'lodash'
@@ -9,7 +9,7 @@
import ConfigManager from 'browser/main/lib/ConfigManager'
import TrashButton from './TrashButton'
import FullscreenButton from './FullscreenButton'
-@@ -112,7 +111,6 @@
+@@ -117,7 +116,6 @@
type: 'UPDATE_NOTE',
note: note
})
@@ -17,7 +17,7 @@
})
}
-@@ -151,7 +149,6 @@
+@@ -156,7 +154,6 @@
handleStarButtonClick (e) {
const { note } = this.state
@@ -26,17 +26,17 @@
note.isStarred = !note.isStarred
diff -ura a/browser/main/Detail/SnippetNoteDetail.js b/browser/main/Detail/SnippetNoteDetail.js
---- a/browser/main/Detail/SnippetNoteDetail.js 2018-03-22 15:07:28.000000000 +0100
-+++ b/browser/main/Detail/SnippetNoteDetail.js 2018-03-22 16:06:37.140689593 +0100
-@@ -18,7 +18,6 @@
- import ConfigManager from 'browser/main/lib/ConfigManager'
+--- a/browser/main/Detail/SnippetNoteDetail.js 2018-07-19 08:21:35.000000000 +0200
++++ b/browser/main/Detail/SnippetNoteDetail.js 2018-07-19 12:14:00.360531159 +0200
+@@ -19,7 +19,6 @@
import _ from 'lodash'
import {findNoteTitle} from 'browser/lib/findNoteTitle'
+ import convertModeName from 'browser/lib/convertModeName'
-import AwsMobileAnalyticsConfig from 'browser/main/lib/AwsMobileAnalyticsConfig'
import TrashButton from './TrashButton'
import RestoreButton from './RestoreButton'
import PermanentDeleteButton from './PermanentDeleteButton'
-@@ -140,7 +139,6 @@
+@@ -127,7 +126,6 @@
type: 'UPDATE_NOTE',
note: note
})
@@ -44,7 +44,7 @@
})
}
-@@ -179,7 +177,6 @@
+@@ -166,7 +164,6 @@
handleStarButtonClick (e) {
const { note } = this.state
@@ -52,7 +52,7 @@
note.isStarred = !note.isStarred
-@@ -377,9 +374,6 @@
+@@ -364,9 +361,6 @@
const mode = syntax != null ? syntax.name : null
if (mode != null) {
snippets[index].mode = mode
@@ -60,10 +60,10 @@
- name: mode
- })
}
- this.setState({note: Object.assign(this.state.note, {snippets: snippets})})
+ this.setState(state => ({note: Object.assign(state.note, {snippets: snippets})}))
-@@ -401,10 +395,6 @@
- }, () => {
+@@ -388,10 +382,6 @@
+ }), () => {
this.save()
})
-
@@ -74,8 +74,8 @@
}
diff -ura a/browser/main/Detail/TagSelect.js b/browser/main/Detail/TagSelect.js
---- a/browser/main/Detail/TagSelect.js 2018-03-22 15:07:28.000000000 +0100
-+++ b/browser/main/Detail/TagSelect.js 2018-03-22 16:06:54.073880422 +0100
+--- a/browser/main/Detail/TagSelect.js 2018-07-19 08:21:35.000000000 +0200
++++ b/browser/main/Detail/TagSelect.js 2018-07-19 12:14:19.694305305 +0200
@@ -3,7 +3,6 @@
import CSSModules from 'browser/lib/CSSModules'
import styles from './TagSelect.styl'
@@ -84,7 +84,7 @@
import i18n from 'browser/lib/i18n'
class TagSelect extends React.Component {
-@@ -63,7 +62,6 @@
+@@ -56,7 +55,6 @@
}
submitTag () {
@@ -93,8 +93,8 @@
let newTag = this.refs.newTag.value.trim().replace(/ +/g, '_')
newTag = newTag.charAt(0) === '#' ? newTag.substring(1) : newTag
diff -ura a/browser/main/Main.js b/browser/main/Main.js
---- a/browser/main/Main.js 2018-03-22 15:07:28.000000000 +0100
-+++ b/browser/main/Main.js 2018-03-22 16:07:08.159039305 +0100
+--- a/browser/main/Main.js 2018-07-19 08:21:35.000000000 +0200
++++ b/browser/main/Main.js 2018-07-19 12:14:36.051347482 +0200
@@ -10,7 +10,6 @@
import dataApi from 'browser/main/lib/dataApi'
import _ from 'lodash'
@@ -103,7 +103,7 @@
import eventEmitter from 'browser/main/lib/eventEmitter'
import { hashHistory } from 'react-router'
import store from 'browser/main/store'
-@@ -24,10 +23,6 @@
+@@ -26,10 +25,6 @@
constructor (props) {
super(props)
@@ -115,8 +115,8 @@
this.state = {
diff -ura a/browser/main/modals/CreateFolderModal.js b/browser/main/modals/CreateFolderModal.js
---- a/browser/main/modals/CreateFolderModal.js 2018-03-22 15:07:28.000000000 +0100
-+++ b/browser/main/modals/CreateFolderModal.js 2018-03-22 16:07:22.927206041 +0100
+--- a/browser/main/modals/CreateFolderModal.js 2018-07-19 08:21:35.000000000 +0200
++++ b/browser/main/modals/CreateFolderModal.js 2018-07-19 12:14:51.851712364 +0200
@@ -6,7 +6,6 @@
import store from 'browser/main/store'
import consts from 'browser/lib/consts'
@@ -134,8 +134,8 @@
const { storage } = this.props
const input = {
diff -ura a/browser/main/modals/NewNoteModal.js b/browser/main/modals/NewNoteModal.js
---- a/browser/main/modals/NewNoteModal.js 2018-03-22 15:07:28.000000000 +0100
-+++ b/browser/main/modals/NewNoteModal.js 2018-03-22 16:07:43.452438010 +0100
+--- a/browser/main/modals/NewNoteModal.js 2018-07-19 08:21:35.000000000 +0200
++++ b/browser/main/modals/NewNoteModal.js 2018-07-19 12:15:11.568837239 +0200
@@ -5,7 +5,6 @@
import { hashHistory } from 'react-router'
import ee from 'browser/main/lib/eventEmitter'
@@ -144,7 +144,7 @@
import i18n from 'browser/lib/i18n'
class NewNoteModal extends React.Component {
-@@ -25,8 +24,6 @@
+@@ -24,8 +23,6 @@
}
handleMarkdownNoteButtonClick (e) {
@@ -163,8 +163,8 @@
dataApi
diff -ura a/browser/main/modals/PreferencesModal/InfoTab.js b/browser/main/modals/PreferencesModal/InfoTab.js
---- a/browser/main/modals/PreferencesModal/InfoTab.js 2018-03-22 15:07:28.000000000 +0100
-+++ b/browser/main/modals/PreferencesModal/InfoTab.js 2018-03-22 16:08:39.671074712 +0100
+--- a/browser/main/modals/PreferencesModal/InfoTab.js 2018-07-19 08:21:35.000000000 +0200
++++ b/browser/main/modals/PreferencesModal/InfoTab.js 2018-07-19 12:15:47.909689742 +0200
@@ -3,7 +3,6 @@
import styles from './InfoTab.styl'
import ConfigManager from 'browser/main/lib/ConfigManager'
@@ -246,17 +246,17 @@
)
}
diff -ura a/browser/main/NoteList/index.js b/browser/main/NoteList/index.js
---- a/browser/main/NoteList/index.js 2018-03-22 15:07:28.000000000 +0100
-+++ b/browser/main/NoteList/index.js 2018-03-22 16:09:20.152534305 +0100
-@@ -15,7 +15,6 @@
+--- a/browser/main/NoteList/index.js 2018-07-19 08:21:35.000000000 +0200
++++ b/browser/main/NoteList/index.js 2018-07-19 12:16:10.730230097 +0200
+@@ -17,7 +17,6 @@
import path from 'path'
import { hashHistory } from 'react-router'
import copy from 'copy-to-clipboard'
-import AwsMobileAnalyticsConfig from 'browser/main/lib/AwsMobileAnalyticsConfig'
import Markdown from '../../lib/markdown'
import i18n from 'browser/lib/i18n'
-
-@@ -625,7 +624,6 @@
+ import { confirmDeleteNote } from 'browser/lib/confirmDeleteNote'
+@@ -633,7 +632,6 @@
note: newNote
})
})
@@ -264,7 +264,7 @@
console.log('Notes went to trash')
})
.catch((err) => {
-@@ -644,8 +642,6 @@
+@@ -652,8 +650,6 @@
const firstNote = selectedNotes[0]
const eventName = firstNote.type === 'MARKDOWN_NOTE' ? 'ADD_MARKDOWN' : 'ADD_SNIPPET'
@@ -274,14 +274,14 @@
.createNote(storage.key, {
type: firstNote.type,
diff -ura a/package.json b/package.json
---- a/package.json 2018-03-22 15:07:28.000000000 +0100
-+++ b/package.json 2018-03-22 16:09:42.000000000 +0100
-@@ -50,8 +50,6 @@
- "dependencies": {
+--- a/package.json 2018-07-19 08:21:35.000000000 +0200
++++ b/package.json 2018-07-19 12:16:38.697563991 +0200
+@@ -52,8 +52,6 @@
"@rokt33r/markdown-it-math": "^4.0.1",
"@rokt33r/season": "^5.3.0",
+ "@susisu/mte-kernel": "^2.0.0",
- "aws-sdk": "^2.48.0",
- "aws-sdk-mobile-analytics": "^0.9.2",
- "codemirror": "^5.19.0",
+ "chart.js": "^2.7.2",
+ "codemirror": "^5.39.0",
"codemirror-mode-elixir": "^1.1.1",
- "electron-config": "^0.2.1",
diff --git a/files/warning-fix.patch b/files/warning-fix.patch
deleted file mode 100644
--- a/files/warning-fix.patch
+++ /dev/null
@@ -1,69 +0,0 @@
-diff -ura a/gruntfile.js b/gruntfile.js
---- a/gruntfile.js 2018-02-03 15:50:49.000000000 +0100
-+++ b/gruntfile.js 2018-02-03 20:06:27.823432173 +0100
-@@ -6,6 +6,7 @@
-
- module.exports = function (grunt) {
- var authCode
-+ /*
- try {
- authCode = grunt.file.readJSON('secret/auth_code.json')
- } catch (e) {
-@@ -13,6 +14,7 @@
- console.warn('secret/auth_code.json is not found. CodeSigning is not available.')
- }
- }
-+ */
- const OSX_COMMON_NAME = authCode != null ? authCode.OSX_COMMON_NAME : ''
- const WIN_CERT_PASSWORD = authCode != null ? authCode.WIN_CERT_PASSWORD : ''
-
-@@ -74,10 +76,12 @@
-
- grunt.initConfig(initConfig)
- grunt.loadNpmTasks('grunt-electron-installer')
-+ /*
- if (!WIN) {
- grunt.loadNpmTasks('grunt-electron-installer-debian')
- grunt.loadNpmTasks('grunt-electron-installer-redhat')
- }
-+ */
-
- grunt.registerTask('compile', function () {
- var done = this.async()
-diff -ura a/package.json b/package.json
---- a/package.json 2018-02-03 15:50:49.000000000 +0100
-+++ b/package.json 2018-02-03 20:06:05.383251764 +0100
-@@ -104,14 +104,14 @@
- "devtron": "^1.1.0",
- "dom-storage": "^2.0.2",
- "electron": "1.7.11",
-- "electron-packager": "^6.0.0",
-+ "electron-packager": "^8.6.0",
- "eslint": "^3.13.1",
- "eslint-config-standard": "^6.2.1",
- "eslint-config-standard-jsx": "^3.2.0",
- "eslint-plugin-react": "^7.2.0",
- "eslint-plugin-standard": "^3.0.1",
- "faker": "^3.1.0",
-- "grunt": "^0.4.5",
-+ "grunt": "^1.0.1",
- "grunt-electron-installer": "2.1.0",
- "history": "^1.17.0",
- "jsdom": "^9.4.2",
-@@ -125,15 +125,11 @@
- "react-router-redux": "^4.0.4",
- "standard": "^8.4.0",
- "style-loader": "^0.12.4",
-- "stylus": "^0.52.4",
-+ "stylus": "^0.54.4",
- "stylus-loader": "^2.3.1",
- "webpack": "^1.12.2",
- "webpack-dev-server": "^1.12.0"
- },
-- "optionalDependencies": {
-- "grunt-electron-installer-debian": "^0.2.0",
-- "grunt-electron-installer-redhat": "^0.3.1"
-- },
- "optional": false,
- "ava": {
- "files": [
diff --git a/package.yml b/package.yml
--- a/package.yml
+++ b/package.yml
@@ -1,8 +1,8 @@
name : boostnote
-version : 0.11.4
-release : 1
+version : 0.11.8
+release : 2
source :
- - https://github.com/BoostIO/Boostnote/archive/v0.11.4.tar.gz : 99b7f5403bfd78458bdbb5c80c605c33621a87b9e20634af6fa982c746cc914a
+ - https://github.com/BoostIO/Boostnote/archive/v0.11.8.tar.gz : faca88c7daabd550983bc18496aebc3af3f1ad558a17045c780f6c3fa63ccc7f
license : GPL-3.0-or-later
component : office.notes
networking : yes
@@ -15,6 +15,7 @@
- pkgconfig(fontconfig)
- pkgconfig(gconf-2.0)
- pkgconfig(gtk+-2.0)
+ - pkgconfig(gtk+-3.0)
- pkgconfig(krb5)
- pkgconfig(libsecret-1)
- pkgconfig(pango)
@@ -27,8 +28,8 @@
- git
- nodejs
setup : |
- %patch -p1 < $pkgfiles/warning-fix.patch
%patch -p1 < $pkgfiles/remove-analytics.patch
+ %patch -p1 < $pkgfiles/markdown-fix.patch
mkdir -p grunt-install
npm install --prefix grunt-install grunt-cli
diff --git a/pspec_x86_64.xml b/pspec_x86_64.xml
--- a/pspec_x86_64.xml
+++ b/pspec_x86_64.xml
@@ -273,8 +273,10 @@
<Path fileType="data">/usr/share/boostnote/resources/app/locales/de.json</Path>
<Path fileType="data">/usr/share/boostnote/resources/app/locales/en.json</Path>
<Path fileType="data">/usr/share/boostnote/resources/app/locales/es-ES.json</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/locales/fa.json</Path>
<Path fileType="data">/usr/share/boostnote/resources/app/locales/fr.json</Path>
<Path fileType="data">/usr/share/boostnote/resources/app/locales/hu.json</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/locales/it.json</Path>
<Path fileType="data">/usr/share/boostnote/resources/app/locales/ja.json</Path>
<Path fileType="data">/usr/share/boostnote/resources/app/locales/ko.json</Path>
<Path fileType="data">/usr/share/boostnote/resources/app/locales/no.json</Path>
@@ -283,6 +285,7 @@
<Path fileType="data">/usr/share/boostnote/resources/app/locales/pt-PT.json</Path>
<Path fileType="data">/usr/share/boostnote/resources/app/locales/ru.json</Path>
<Path fileType="data">/usr/share/boostnote/resources/app/locales/sq.json</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/locales/tr.json</Path>
<Path fileType="data">/usr/share/boostnote/resources/app/locales/zh-CN.json</Path>
<Path fileType="data">/usr/share/boostnote/resources/app/locales/zh-TW.json</Path>
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@rokt33r/markdown-it-math/.npmignore</Path>
@@ -300,8 +303,41 @@
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@rokt33r/season/lib/cson.js</Path>
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@rokt33r/season/lib/csonc.js</Path>
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@rokt33r/season/package.json</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@susisu/mte-kernel/CHANGELOG.md</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@susisu/mte-kernel/LICENSE</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@susisu/mte-kernel/README.md</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@susisu/mte-kernel/dist/mte-kernel.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@susisu/mte-kernel/dist/mte-kernel.js.map</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@susisu/mte-kernel/dist/mte-kernel.mjs</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@susisu/mte-kernel/dist/mte-kernel.mjs.map</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@susisu/mte-kernel/lib/alignment.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@susisu/mte-kernel/lib/edit-script.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@susisu/mte-kernel/lib/focus.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@susisu/mte-kernel/lib/formatter.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@susisu/mte-kernel/lib/index.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@susisu/mte-kernel/lib/options.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@susisu/mte-kernel/lib/parser.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@susisu/mte-kernel/lib/point.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@susisu/mte-kernel/lib/range.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@susisu/mte-kernel/lib/table-cell.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@susisu/mte-kernel/lib/table-editor.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@susisu/mte-kernel/lib/table-row.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@susisu/mte-kernel/lib/table.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@susisu/mte-kernel/lib/text-editor.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@susisu/mte-kernel/package.json</Path>
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/ansi-styles/index.js</Path>
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/ansi-styles/license</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/ansi-styles/node_modules/color-convert/CHANGELOG.md</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/ansi-styles/node_modules/color-convert/LICENSE</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/ansi-styles/node_modules/color-convert/README.md</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/ansi-styles/node_modules/color-convert/conversions.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/ansi-styles/node_modules/color-convert/index.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/ansi-styles/node_modules/color-convert/package.json</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/ansi-styles/node_modules/color-convert/route.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/ansi-styles/node_modules/color-name/LICENSE</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/ansi-styles/node_modules/color-name/README.md</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/ansi-styles/node_modules/color-name/index.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/ansi-styles/node_modules/color-name/package.json</Path>
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/ansi-styles/package.json</Path>
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/ansi-styles/readme.md</Path>
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/argparse/CHANGELOG.md</Path>
@@ -2084,10 +2120,385 @@
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/chalk/readme.md</Path>
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/chalk/templates.js</Path>
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/chalk/types/index.d.ts</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/charenc/LICENSE.mkd</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/charenc/README.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/charenc/charenc.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/charenc/package.json</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/chart.js/.editorconfig</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/chart.js/.eslintignore</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/chart.js/.eslintrc.yml</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/chart.js/.htmllintrc</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/chart.js/.npmignore</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/chart.js/LICENSE.md</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/chart.js/MAINTAINING.md</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/chart.js/README.md</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/chart.js/book.json</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/chart.js/bower.json</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/chart.js/composer.json</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/chart.js/dist/Chart.bundle.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/chart.js/dist/Chart.bundle.min.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/chart.js/dist/Chart.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/chart.js/dist/Chart.min.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/chart.js/dist/docs/axes/cartesian/category.html</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/chart.js/dist/docs/axes/cartesian/index.html</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/chart.js/dist/docs/axes/cartesian/linear.html</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/chart.js/dist/docs/axes/cartesian/logarithmic.html</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/chart.js/dist/docs/axes/cartesian/time.html</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/chart.js/dist/docs/axes/index.html</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/chart.js/dist/docs/axes/labelling.html</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/chart.js/dist/docs/axes/radial/index.html</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/chart.js/dist/docs/axes/radial/linear.html</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/chart.js/dist/docs/axes/styling.html</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/chart.js/dist/docs/charts/area.html</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/chart.js/dist/docs/charts/bar.html</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/chart.js/dist/docs/charts/bubble.html</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/chart.js/dist/docs/charts/doughnut.html</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/chart.js/dist/docs/charts/index.html</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/chart.js/dist/docs/charts/line.html</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/chart.js/dist/docs/charts/mixed.html</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/chart.js/dist/docs/charts/polar.html</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/chart.js/dist/docs/charts/radar.html</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/chart.js/dist/docs/charts/scatter.html</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/chart.js/dist/docs/configuration/animations.html</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/chart.js/dist/docs/configuration/elements.html</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/chart.js/dist/docs/configuration/index.html</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/chart.js/dist/docs/configuration/layout.html</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/chart.js/dist/docs/configuration/legend.html</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/chart.js/dist/docs/configuration/title.html</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/chart.js/dist/docs/configuration/tooltip.html</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/chart.js/dist/docs/developers/api.html</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/chart.js/dist/docs/developers/axes.html</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/chart.js/dist/docs/developers/charts.html</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/chart.js/dist/docs/developers/contributing.html</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/chart.js/dist/docs/developers/index.html</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/chart.js/dist/docs/developers/plugins.html</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/chart.js/dist/docs/developers/updates.html</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/chart.js/dist/docs/general/colors.html</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/chart.js/dist/docs/general/device-pixel-ratio.html</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/chart.js/dist/docs/general/fonts.html</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/chart.js/dist/docs/general/index.html</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/chart.js/dist/docs/general/interactions/events.html</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/chart.js/dist/docs/general/interactions/index.html</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/chart.js/dist/docs/general/interactions/modes.html</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/chart.js/dist/docs/general/options.html</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/chart.js/dist/docs/general/responsive.html</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/chart.js/dist/docs/getting-started/index.html</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/chart.js/dist/docs/getting-started/installation.html</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/chart.js/dist/docs/getting-started/integration.html</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/chart.js/dist/docs/getting-started/usage.html</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/chart.js/dist/docs/gitbook/fonts/fontawesome/FontAwesome.otf</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/chart.js/dist/docs/gitbook/fonts/fontawesome/fontawesome-webfont.eot</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/chart.js/dist/docs/gitbook/fonts/fontawesome/fontawesome-webfont.svg</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/chart.js/dist/docs/gitbook/fonts/fontawesome/fontawesome-webfont.ttf</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/chart.js/dist/docs/gitbook/fonts/fontawesome/fontawesome-webfont.woff</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/chart.js/dist/docs/gitbook/fonts/fontawesome/fontawesome-webfont.woff2</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/chart.js/dist/docs/gitbook/gitbook-plugin-anchorjs/anchor-style.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/chart.js/dist/docs/gitbook/gitbook-plugin-chartjs/Chart.bundle.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/chart.js/dist/docs/gitbook/gitbook-plugin-chartjs/Chart.bundle.min.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/chart.js/dist/docs/gitbook/gitbook-plugin-chartjs/Chart.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/chart.js/dist/docs/gitbook/gitbook-plugin-chartjs/Chart.min.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/chart.js/dist/docs/gitbook/gitbook-plugin-chartjs/chartjs-plugin-deferred.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/chart.js/dist/docs/gitbook/gitbook-plugin-chartjs/chartjs-plugin-deferred.min.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/chart.js/dist/docs/gitbook/gitbook-plugin-chartjs/style.css</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/chart.js/dist/docs/gitbook/gitbook-plugin-fontsettings/fontsettings.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/chart.js/dist/docs/gitbook/gitbook-plugin-fontsettings/website.css</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/chart.js/dist/docs/gitbook/gitbook-plugin-ga/plugin.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/chart.js/dist/docs/gitbook/gitbook-plugin-highlight/ebook.css</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/chart.js/dist/docs/gitbook/gitbook-plugin-highlight/website.css</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/chart.js/dist/docs/gitbook/gitbook-plugin-search-plus/jquery.mark.min.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/chart.js/dist/docs/gitbook/gitbook-plugin-search-plus/search.css</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/chart.js/dist/docs/gitbook/gitbook-plugin-search-plus/search.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/chart.js/dist/docs/gitbook/gitbook-plugin-sharing/buttons.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/chart.js/dist/docs/gitbook/gitbook.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/chart.js/dist/docs/gitbook/images/apple-touch-icon-precomposed-152.png</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/chart.js/dist/docs/gitbook/images/favicon.ico</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/chart.js/dist/docs/gitbook/style.css</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/chart.js/dist/docs/gitbook/theme.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/chart.js/dist/docs/index.html</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/chart.js/dist/docs/notes/comparison.html</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/chart.js/dist/docs/notes/extensions.html</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/chart.js/dist/docs/notes/index.html</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/chart.js/dist/docs/notes/license.html</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/chart.js/dist/docs/search_plus_index.json</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/chart.js/dist/docs/style.css</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/chart.js/docs/README.md</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/chart.js/docs/SUMMARY.md</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/chart.js/docs/axes/README.md</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/chart.js/docs/axes/cartesian/README.md</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/chart.js/docs/axes/cartesian/category.md</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/chart.js/docs/axes/cartesian/linear.md</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/chart.js/docs/axes/cartesian/logarithmic.md</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/chart.js/docs/axes/cartesian/time.md</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/chart.js/docs/axes/labelling.md</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/chart.js/docs/axes/radial/README.md</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/chart.js/docs/axes/radial/linear.md</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/chart.js/docs/axes/styling.md</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/chart.js/docs/charts/README.md</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/chart.js/docs/charts/area.md</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/chart.js/docs/charts/bar.md</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/chart.js/docs/charts/bubble.md</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/chart.js/docs/charts/doughnut.md</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/chart.js/docs/charts/line.md</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/chart.js/docs/charts/mixed.md</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/chart.js/docs/charts/polar.md</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/chart.js/docs/charts/radar.md</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/chart.js/docs/charts/scatter.md</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/chart.js/docs/configuration/README.md</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/chart.js/docs/configuration/animations.md</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/chart.js/docs/configuration/elements.md</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/chart.js/docs/configuration/layout.md</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/chart.js/docs/configuration/legend.md</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/chart.js/docs/configuration/title.md</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/chart.js/docs/configuration/tooltip.md</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/chart.js/docs/developers/README.md</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/chart.js/docs/developers/api.md</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/chart.js/docs/developers/axes.md</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/chart.js/docs/developers/charts.md</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/chart.js/docs/developers/contributing.md</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/chart.js/docs/developers/plugins.md</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/chart.js/docs/developers/updates.md</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/chart.js/docs/general/README.md</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/chart.js/docs/general/colors.md</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/chart.js/docs/general/device-pixel-ratio.md</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/chart.js/docs/general/fonts.md</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/chart.js/docs/general/interactions/README.md</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/chart.js/docs/general/interactions/events.md</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/chart.js/docs/general/interactions/modes.md</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/chart.js/docs/general/options.md</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/chart.js/docs/general/responsive.md</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/chart.js/docs/getting-started/README.md</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/chart.js/docs/getting-started/installation.md</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/chart.js/docs/getting-started/integration.md</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/chart.js/docs/getting-started/usage.md</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/chart.js/docs/notes/README.md</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/chart.js/docs/notes/comparison.md</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/chart.js/docs/notes/extensions.md</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/chart.js/docs/notes/license.md</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/chart.js/docs/style.css</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/chart.js/gulpfile.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/chart.js/karma.conf.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/chart.js/package.json</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/chart.js/samples/.eslintrc.yml</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/chart.js/samples/advanced/data-labelling.html</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/chart.js/samples/advanced/progress-bar.html</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/chart.js/samples/charts/area/analyser.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/chart.js/samples/charts/area/line-boundaries.html</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/chart.js/samples/charts/area/line-datasets.html</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/chart.js/samples/charts/area/line-stacked.html</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/chart.js/samples/charts/area/radar.html</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/chart.js/samples/charts/bar/horizontal.html</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/chart.js/samples/charts/bar/multi-axis.html</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/chart.js/samples/charts/bar/stacked-group.html</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/chart.js/samples/charts/bar/stacked.html</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/chart.js/samples/charts/bar/vertical.html</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/chart.js/samples/charts/bubble.html</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/chart.js/samples/charts/combo-bar-line.html</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/chart.js/samples/charts/doughnut.html</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/chart.js/samples/charts/line/basic.html</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/chart.js/samples/charts/line/interpolation-modes.html</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/chart.js/samples/charts/line/line-styles.html</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/chart.js/samples/charts/line/multi-axis.html</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/chart.js/samples/charts/line/point-sizes.html</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/chart.js/samples/charts/line/point-styles.html</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/chart.js/samples/charts/line/skip-points.html</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/chart.js/samples/charts/line/stepped.html</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/chart.js/samples/charts/pie.html</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/chart.js/samples/charts/polar-area.html</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/chart.js/samples/charts/radar-skip-points.html</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/chart.js/samples/charts/radar.html</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/chart.js/samples/charts/scatter/basic.html</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/chart.js/samples/charts/scatter/multi-axis.html</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/chart.js/samples/favicon.ico</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/chart.js/samples/index.html</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/chart.js/samples/legend/point-style.html</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/chart.js/samples/legend/positioning.html</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/chart.js/samples/logo.svg</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/chart.js/samples/samples.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/chart.js/samples/scales/filtering-labels.html</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/chart.js/samples/scales/gridlines-display.html</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/chart.js/samples/scales/gridlines-style.html</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/chart.js/samples/scales/linear/min-max-suggested.html</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/chart.js/samples/scales/linear/min-max.html</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/chart.js/samples/scales/linear/step-size.html</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/chart.js/samples/scales/logarithmic/line.html</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/chart.js/samples/scales/logarithmic/scatter.html</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/chart.js/samples/scales/multiline-labels.html</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/chart.js/samples/scales/non-numeric-y.html</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/chart.js/samples/scales/time/combo.html</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/chart.js/samples/scales/time/financial.html</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/chart.js/samples/scales/time/line-point-data.html</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/chart.js/samples/scales/time/line.html</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/chart.js/samples/scales/toggle-scale-type.html</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/chart.js/samples/scriptable/bubble.html</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/chart.js/samples/style.css</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/chart.js/samples/tooltips/border.html</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/chart.js/samples/tooltips/callbacks.html</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/chart.js/samples/tooltips/custom-line.html</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/chart.js/samples/tooltips/custom-pie.html</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/chart.js/samples/tooltips/custom-points.html</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/chart.js/samples/tooltips/interactions.html</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/chart.js/samples/tooltips/positioning.html</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/chart.js/samples/utils.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/chart.js/scripts/deploy.sh</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/chart.js/scripts/release.sh</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/chart.js/src/chart.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/chart.js/src/charts/Chart.Bar.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/chart.js/src/charts/Chart.Bubble.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/chart.js/src/charts/Chart.Doughnut.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/chart.js/src/charts/Chart.Line.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/chart.js/src/charts/Chart.PolarArea.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/chart.js/src/charts/Chart.Radar.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/chart.js/src/charts/Chart.Scatter.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/chart.js/src/controllers/controller.bar.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/chart.js/src/controllers/controller.bubble.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/chart.js/src/controllers/controller.doughnut.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/chart.js/src/controllers/controller.line.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/chart.js/src/controllers/controller.polarArea.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/chart.js/src/controllers/controller.radar.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/chart.js/src/controllers/controller.scatter.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/chart.js/src/core/core.animation.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/chart.js/src/core/core.controller.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/chart.js/src/core/core.datasetController.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/chart.js/src/core/core.defaults.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/chart.js/src/core/core.element.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/chart.js/src/core/core.helpers.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/chart.js/src/core/core.interaction.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/chart.js/src/core/core.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/chart.js/src/core/core.layouts.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/chart.js/src/core/core.plugins.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/chart.js/src/core/core.scale.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/chart.js/src/core/core.scaleService.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/chart.js/src/core/core.ticks.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/chart.js/src/core/core.tooltip.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/chart.js/src/elements/element.arc.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/chart.js/src/elements/element.line.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/chart.js/src/elements/element.point.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/chart.js/src/elements/element.rectangle.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/chart.js/src/elements/index.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/chart.js/src/helpers/helpers.canvas.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/chart.js/src/helpers/helpers.core.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/chart.js/src/helpers/helpers.easing.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/chart.js/src/helpers/helpers.options.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/chart.js/src/helpers/index.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/chart.js/src/platforms/platform.basic.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/chart.js/src/platforms/platform.dom.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/chart.js/src/platforms/platform.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/chart.js/src/plugins/index.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/chart.js/src/plugins/plugin.filler.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/chart.js/src/plugins/plugin.legend.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/chart.js/src/plugins/plugin.title.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/chart.js/src/scales/scale.category.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/chart.js/src/scales/scale.linear.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/chart.js/src/scales/scale.linearbase.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/chart.js/src/scales/scale.logarithmic.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/chart.js/src/scales/scale.radialLinear.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/chart.js/src/scales/scale.time.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/chart.js/test/.eslintrc.yml</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/chart.js/test/fixtures/controller.bar/bar-thickness-absolute.json</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/chart.js/test/fixtures/controller.bar/bar-thickness-absolute.png</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/chart.js/test/fixtures/controller.bar/bar-thickness-flex-offset.json</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/chart.js/test/fixtures/controller.bar/bar-thickness-flex-offset.png</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/chart.js/test/fixtures/controller.bar/bar-thickness-flex.json</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/chart.js/test/fixtures/controller.bar/bar-thickness-flex.png</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/chart.js/test/fixtures/controller.bar/bar-thickness-max.json</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/chart.js/test/fixtures/controller.bar/bar-thickness-max.png</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/chart.js/test/fixtures/controller.bar/bar-thickness-min-interval.json</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/chart.js/test/fixtures/controller.bar/bar-thickness-min-interval.png</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/chart.js/test/fixtures/controller.bar/bar-thickness-multiple.json</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/chart.js/test/fixtures/controller.bar/bar-thickness-multiple.png</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/chart.js/test/fixtures/controller.bar/bar-thickness-no-overlap.json</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/chart.js/test/fixtures/controller.bar/bar-thickness-no-overlap.png</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/chart.js/test/fixtures/controller.bar/bar-thickness-offset.json</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/chart.js/test/fixtures/controller.bar/bar-thickness-offset.png</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/chart.js/test/fixtures/controller.bar/bar-thickness-single-xy.json</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/chart.js/test/fixtures/controller.bar/bar-thickness-single-xy.png</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/chart.js/test/fixtures/controller.bar/bar-thickness-single.json</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/chart.js/test/fixtures/controller.bar/bar-thickness-single.png</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/chart.js/test/fixtures/controller.bar/bar-thickness-stacked.json</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/chart.js/test/fixtures/controller.bar/bar-thickness-stacked.png</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/chart.js/test/fixtures/core.scale/label-offset-vertical-axes.json</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/chart.js/test/fixtures/core.scale/label-offset-vertical-axes.png</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/chart.js/test/fixtures/plugin.filler/fill-line-boundary-end-span.json</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/chart.js/test/fixtures/plugin.filler/fill-line-boundary-end-span.png</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/chart.js/test/fixtures/plugin.filler/fill-line-boundary-end.json</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/chart.js/test/fixtures/plugin.filler/fill-line-boundary-end.png</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/chart.js/test/fixtures/plugin.filler/fill-line-boundary-origin-span.json</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/chart.js/test/fixtures/plugin.filler/fill-line-boundary-origin-span.png</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/chart.js/test/fixtures/plugin.filler/fill-line-boundary-origin-spline-span.json</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/chart.js/test/fixtures/plugin.filler/fill-line-boundary-origin-spline-span.png</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/chart.js/test/fixtures/plugin.filler/fill-line-boundary-origin-spline.json</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/chart.js/test/fixtures/plugin.filler/fill-line-boundary-origin-spline.png</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/chart.js/test/fixtures/plugin.filler/fill-line-boundary-origin-stepped-span.json</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/chart.js/test/fixtures/plugin.filler/fill-line-boundary-origin-stepped-span.png</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/chart.js/test/fixtures/plugin.filler/fill-line-boundary-origin-stepped.json</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/chart.js/test/fixtures/plugin.filler/fill-line-boundary-origin-stepped.png</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/chart.js/test/fixtures/plugin.filler/fill-line-boundary-origin.json</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/chart.js/test/fixtures/plugin.filler/fill-line-boundary-origin.png</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/chart.js/test/fixtures/plugin.filler/fill-line-boundary-start-span.json</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/chart.js/test/fixtures/plugin.filler/fill-line-boundary-start-span.png</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/chart.js/test/fixtures/plugin.filler/fill-line-boundary-start.json</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/chart.js/test/fixtures/plugin.filler/fill-line-boundary-start.png</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/chart.js/test/fixtures/plugin.filler/fill-line-dataset-span.json</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/chart.js/test/fixtures/plugin.filler/fill-line-dataset-span.png</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/chart.js/test/fixtures/plugin.filler/fill-line-dataset-spline-span.json</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/chart.js/test/fixtures/plugin.filler/fill-line-dataset-spline-span.png</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/chart.js/test/fixtures/plugin.filler/fill-line-dataset-spline.json</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/chart.js/test/fixtures/plugin.filler/fill-line-dataset-spline.png</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/chart.js/test/fixtures/plugin.filler/fill-line-dataset.json</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/chart.js/test/fixtures/plugin.filler/fill-line-dataset.png</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/chart.js/test/fixtures/plugin.filler/fill-radar-boundary-origin-spline.json</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/chart.js/test/fixtures/plugin.filler/fill-radar-boundary-origin-spline.png</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/chart.js/test/fixtures/plugin.filler/fill-radar-boundary-origin.json</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/chart.js/test/fixtures/plugin.filler/fill-radar-boundary-origin.png</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/chart.js/test/jasmine.context.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/chart.js/test/jasmine.index.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/chart.js/test/jasmine.matchers.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/chart.js/test/jasmine.utils.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/chart.js/test/specs/controller.bar.tests.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/chart.js/test/specs/controller.bubble.tests.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/chart.js/test/specs/controller.doughnut.tests.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/chart.js/test/specs/controller.line.tests.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/chart.js/test/specs/controller.polarArea.tests.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/chart.js/test/specs/controller.radar.tests.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/chart.js/test/specs/controller.scatter.test.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/chart.js/test/specs/core.controller.tests.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/chart.js/test/specs/core.datasetController.tests.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/chart.js/test/specs/core.element.tests.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/chart.js/test/specs/core.helpers.tests.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/chart.js/test/specs/core.interaction.tests.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/chart.js/test/specs/core.layouts.tests.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/chart.js/test/specs/core.plugin.tests.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/chart.js/test/specs/core.scale.tests.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/chart.js/test/specs/core.scaleService.tests.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/chart.js/test/specs/core.ticks.tests.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/chart.js/test/specs/core.tooltip.tests.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/chart.js/test/specs/element.arc.tests.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/chart.js/test/specs/element.line.tests.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/chart.js/test/specs/element.point.tests.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/chart.js/test/specs/element.rectangle.tests.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/chart.js/test/specs/global.defaults.tests.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/chart.js/test/specs/global.deprecations.tests.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/chart.js/test/specs/helpers.canvas.tests.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/chart.js/test/specs/helpers.core.tests.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/chart.js/test/specs/helpers.easing.tests.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/chart.js/test/specs/helpers.options.tests.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/chart.js/test/specs/platform.dom.tests.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/chart.js/test/specs/plugin.filler.tests.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/chart.js/test/specs/plugin.legend.tests.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/chart.js/test/specs/plugin.title.tests.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/chart.js/test/specs/scale.category.tests.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/chart.js/test/specs/scale.linear.tests.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/chart.js/test/specs/scale.logarithmic.tests.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/chart.js/test/specs/scale.radialLinear.tests.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/chart.js/test/specs/scale.time.tests.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/chartjs-color-string/.travis.yml</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/chartjs-color-string/CHANGELOG.md</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/chartjs-color-string/LICENSE</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/chartjs-color-string/README.md</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/chartjs-color-string/color-string.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/chartjs-color-string/package.json</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/chartjs-color-string/test/basic.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/chartjs-color/CHANGELOG.md</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/chartjs-color/LICENSE</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/chartjs-color/README.md</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/chartjs-color/index.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/chartjs-color/package.json</Path>
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/classnames/HISTORY.md</Path>
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/classnames/LICENSE</Path>
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/classnames/README.md</Path>
@@ -2455,17 +2866,23 @@
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/coffee-script/package.json</Path>
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/coffee-script/register.js</Path>
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/coffee-script/repl.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/color-convert/.travis.yml</Path>
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/color-convert/CHANGELOG.md</Path>
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/color-convert/LICENSE</Path>
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/color-convert/README.md</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/color-convert/component.json</Path>
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/color-convert/conversions.js</Path>
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/color-convert/index.js</Path>
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/color-convert/package.json</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/color-convert/route.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/color-convert/test/basic.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/color-convert/test/speed.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/color-name/.eslintrc.json</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/color-name/.npmignore</Path>
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/color-name/LICENSE</Path>
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/color-name/README.md</Path>
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/color-name/index.js</Path>
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/color-name/package.json</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/color-name/test.js</Path>
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/colors/LICENSE</Path>
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/colors/README.md</Path>
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/colors/examples/normal-usage.js</Path>
@@ -2487,16 +2904,12 @@
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/colors/safe.d.ts</Path>
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/colors/safe.js</Path>
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/colors/themes/generic-logging.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/combined-stream/License</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/combined-stream/Readme.md</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/combined-stream/lib/combined_stream.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/combined-stream/lib/defer.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/combined-stream/package.json</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/component-emitter/History.md</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/component-emitter/LICENSE</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/component-emitter/Readme.md</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/component-emitter/index.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/component-emitter/package.json</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/commander/CHANGELOG.md</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/commander/LICENSE</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/commander/Readme.md</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/commander/index.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/commander/package.json</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/commander/typings/index.d.ts</Path>
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/concat-map/.travis.yml</Path>
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/concat-map/LICENSE</Path>
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/concat-map/README.markdown</Path>
@@ -2508,12 +2921,6 @@
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/conf/license</Path>
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/conf/package.json</Path>
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/conf/readme.md</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/cookiejar/.npmignore</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/cookiejar/LICENSE</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/cookiejar/cookiejar.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/cookiejar/package.json</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/cookiejar/readme.md</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/cookiejar/tests/test.js</Path>
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/core-js/CHANGELOG.md</Path>
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/core-js/Gruntfile.js</Path>
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/core-js/LICENSE</Path>
@@ -3393,10 +3800,6 @@
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/create-react-class/factory.js</Path>
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/create-react-class/index.js</Path>
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/create-react-class/package.json</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/crypt/LICENSE.mkd</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/crypt/README.mkd</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/crypt/crypt.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/crypt/package.json</Path>
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/cson-parser/CHANGELOG.md</Path>
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/cson-parser/LICENSE</Path>
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/cson-parser/README.md</Path>
@@ -3404,6 +3807,954 @@
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/cson-parser/lib/parse.js</Path>
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/cson-parser/lib/stringify.js</Path>
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/cson-parser/package.json</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/d3-array/.eslintrc</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/d3-array/.npmignore</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/d3-array/LICENSE</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/d3-array/README.md</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/d3-array/build/d3-array.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/d3-array/build/d3-array.min.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/d3-array/img/histogram.png</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/d3-array/index.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/d3-array/package.json</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/d3-array/src/array.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/d3-array/src/ascending.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/d3-array/src/bisect.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/d3-array/src/bisector.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/d3-array/src/constant.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/d3-array/src/cross.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/d3-array/src/descending.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/d3-array/src/deviation.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/d3-array/src/extent.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/d3-array/src/histogram.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/d3-array/src/identity.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/d3-array/src/max.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/d3-array/src/mean.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/d3-array/src/median.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/d3-array/src/merge.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/d3-array/src/min.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/d3-array/src/number.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/d3-array/src/pairs.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/d3-array/src/permute.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/d3-array/src/quantile.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/d3-array/src/range.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/d3-array/src/scan.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/d3-array/src/shuffle.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/d3-array/src/sum.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/d3-array/src/threshold/freedmanDiaconis.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/d3-array/src/threshold/scott.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/d3-array/src/threshold/sturges.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/d3-array/src/ticks.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/d3-array/src/transpose.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/d3-array/src/variance.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/d3-array/src/zip.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/d3-axis/.eslintrc</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/d3-axis/.npmignore</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/d3-axis/LICENSE</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/d3-axis/README.md</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/d3-axis/build/d3-axis.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/d3-axis/build/d3-axis.min.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/d3-axis/img/custom.png</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/d3-axis/index.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/d3-axis/package.json</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/d3-axis/src/array.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/d3-axis/src/axis.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/d3-axis/src/identity.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/d3-brush/.eslintrc</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/d3-brush/.npmignore</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/d3-brush/LICENSE</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/d3-brush/README.md</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/d3-brush/build/d3-brush.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/d3-brush/build/d3-brush.min.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/d3-brush/img/mona-lisa.jpg</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/d3-brush/img/snapping.png</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/d3-brush/index.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/d3-brush/package.json</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/d3-brush/src/brush.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/d3-brush/src/constant.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/d3-brush/src/event.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/d3-brush/src/noevent.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/d3-chord/.eslintrc</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/d3-chord/.npmignore</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/d3-chord/LICENSE</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/d3-chord/README.md</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/d3-chord/build/d3-chord.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/d3-chord/build/d3-chord.min.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/d3-chord/img/chord.png</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/d3-chord/index.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/d3-chord/package.json</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/d3-chord/src/array.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/d3-chord/src/chord.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/d3-chord/src/constant.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/d3-chord/src/math.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/d3-chord/src/ribbon.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/d3-collection/.eslintrc</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/d3-collection/.npmignore</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/d3-collection/LICENSE</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/d3-collection/README.md</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/d3-collection/build/d3-collection.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/d3-collection/build/d3-collection.min.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/d3-collection/index.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/d3-collection/package.json</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/d3-collection/src/entries.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/d3-collection/src/keys.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/d3-collection/src/map.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/d3-collection/src/nest.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/d3-collection/src/set.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/d3-collection/src/values.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/d3-color/.eslintrc</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/d3-color/.npmignore</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/d3-color/LICENSE</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/d3-color/README.md</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/d3-color/build/d3-color.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/d3-color/build/d3-color.min.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/d3-color/index.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/d3-color/package.json</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/d3-color/src/color.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/d3-color/src/cubehelix.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/d3-color/src/define.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/d3-color/src/lab.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/d3-color/src/math.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/d3-dispatch/.eslintrc</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/d3-dispatch/.npmignore</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/d3-dispatch/LICENSE</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/d3-dispatch/README.md</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/d3-dispatch/build/d3-dispatch.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/d3-dispatch/build/d3-dispatch.min.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/d3-dispatch/index.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/d3-dispatch/package.json</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/d3-dispatch/src/dispatch.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/d3-drag/.eslintrc</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/d3-drag/.npmignore</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/d3-drag/LICENSE</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/d3-drag/README.md</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/d3-drag/build/d3-drag.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/d3-drag/build/d3-drag.min.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/d3-drag/img/canvas.png</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/d3-drag/img/dots.png</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/d3-drag/img/drawing.png</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/d3-drag/img/force-collide.png</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/d3-drag/img/force-graph.png</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/d3-drag/img/voronoi.png</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/d3-drag/index.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/d3-drag/package.json</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/d3-drag/rollup.config.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/d3-drag/src/constant.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/d3-drag/src/drag.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/d3-drag/src/event.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/d3-drag/src/nodrag.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/d3-drag/src/noevent.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/d3-dsv/.eslintrc</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/d3-dsv/LICENSE</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/d3-dsv/README.md</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/d3-dsv/bin/dsv2dsv</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/d3-dsv/bin/dsv2json</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/d3-dsv/bin/json2dsv</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/d3-dsv/build/d3-dsv.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/d3-dsv/build/d3-dsv.min.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/d3-dsv/index.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/d3-dsv/package.json</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/d3-dsv/rollup.config.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/d3-dsv/src/csv.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/d3-dsv/src/dsv.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/d3-dsv/src/tsv.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/d3-ease/.eslintrc</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/d3-ease/.npmignore</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/d3-ease/LICENSE</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/d3-ease/README.md</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/d3-ease/build/d3-ease.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/d3-ease/build/d3-ease.min.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/d3-ease/img/backIn.png</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/d3-ease/img/backInOut.png</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/d3-ease/img/backOut.png</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/d3-ease/img/bounceIn.png</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/d3-ease/img/bounceInOut.png</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/d3-ease/img/bounceOut.png</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/d3-ease/img/circleIn.png</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/d3-ease/img/circleInOut.png</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/d3-ease/img/circleOut.png</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/d3-ease/img/cubicIn.png</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/d3-ease/img/cubicInOut.png</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/d3-ease/img/cubicOut.png</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/d3-ease/img/elasticIn.png</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/d3-ease/img/elasticInOut.png</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/d3-ease/img/elasticOut.png</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/d3-ease/img/expIn.png</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/d3-ease/img/expInOut.png</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/d3-ease/img/expOut.png</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/d3-ease/img/linear.png</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/d3-ease/img/polyIn.png</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/d3-ease/img/polyInOut.png</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/d3-ease/img/polyOut.png</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/d3-ease/img/quadIn.png</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/d3-ease/img/quadInOut.png</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/d3-ease/img/quadOut.png</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/d3-ease/img/sinIn.png</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/d3-ease/img/sinInOut.png</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/d3-ease/img/sinOut.png</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/d3-ease/index.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/d3-ease/package.json</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/d3-ease/src/back.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/d3-ease/src/bounce.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/d3-ease/src/circle.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/d3-ease/src/cubic.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/d3-ease/src/elastic.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/d3-ease/src/exp.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/d3-ease/src/linear.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/d3-ease/src/poly.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/d3-ease/src/quad.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/d3-ease/src/sin.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/d3-force/.eslintrc</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/d3-force/LICENSE</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/d3-force/README.md</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/d3-force/build/d3-force.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/d3-force/build/d3-force.min.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/d3-force/img/beeswarm.png</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/d3-force/img/collide.png</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/d3-force/img/graph.png</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/d3-force/img/lattice.png</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/d3-force/img/phyllotaxis.png</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/d3-force/img/tree.png</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/d3-force/index.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/d3-force/package.json</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/d3-force/rollup.config.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/d3-force/src/center.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/d3-force/src/collide.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/d3-force/src/constant.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/d3-force/src/jiggle.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/d3-force/src/link.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/d3-force/src/manyBody.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/d3-force/src/radial.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/d3-force/src/simulation.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/d3-force/src/x.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/d3-force/src/y.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/d3-format/.eslintrc</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/d3-format/LICENSE</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/d3-format/README.md</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/d3-format/build/d3-format.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/d3-format/build/d3-format.min.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/d3-format/index.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/d3-format/locale/ar-001.json</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/d3-format/locale/ar-AE.json</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/d3-format/locale/ar-BH.json</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/d3-format/locale/ar-DJ.json</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/d3-format/locale/ar-DZ.json</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/d3-format/locale/ar-EG.json</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/d3-format/locale/ar-EH.json</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/d3-format/locale/ar-ER.json</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/d3-format/locale/ar-IL.json</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/d3-format/locale/ar-IQ.json</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/d3-format/locale/ar-JO.json</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/d3-format/locale/ar-KM.json</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/d3-format/locale/ar-KW.json</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/d3-format/locale/ar-LB.json</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/d3-format/locale/ar-LY.json</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/d3-format/locale/ar-MA.json</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/d3-format/locale/ar-MR.json</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/d3-format/locale/ar-OM.json</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/d3-format/locale/ar-PS.json</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/d3-format/locale/ar-QA.json</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/d3-format/locale/ar-SA.json</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/d3-format/locale/ar-SD.json</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/d3-format/locale/ar-SO.json</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/d3-format/locale/ar-SS.json</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/d3-format/locale/ar-SY.json</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/d3-format/locale/ar-TD.json</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/d3-format/locale/ar-TN.json</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/d3-format/locale/ar-YE.json</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/d3-format/locale/ca-ES.json</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/d3-format/locale/cs-CZ.json</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/d3-format/locale/de-CH.json</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/d3-format/locale/de-DE.json</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/d3-format/locale/en-CA.json</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/d3-format/locale/en-GB.json</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/d3-format/locale/en-IN.json</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/d3-format/locale/en-US.json</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/d3-format/locale/es-ES.json</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/d3-format/locale/es-MX.json</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/d3-format/locale/fi-FI.json</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/d3-format/locale/fr-CA.json</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/d3-format/locale/fr-FR.json</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/d3-format/locale/he-IL.json</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/d3-format/locale/hu-HU.json</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/d3-format/locale/it-IT.json</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/d3-format/locale/ja-JP.json</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/d3-format/locale/ko-KR.json</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/d3-format/locale/mk-MK.json</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/d3-format/locale/nl-NL.json</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/d3-format/locale/pl-PL.json</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/d3-format/locale/pt-BR.json</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/d3-format/locale/ru-RU.json</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/d3-format/locale/sv-SE.json</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/d3-format/locale/uk-UA.json</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/d3-format/locale/zh-CN.json</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/d3-format/package.json</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/d3-format/src/defaultLocale.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/d3-format/src/exponent.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/d3-format/src/formatDecimal.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/d3-format/src/formatDefault.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/d3-format/src/formatGroup.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/d3-format/src/formatNumerals.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/d3-format/src/formatPrefixAuto.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/d3-format/src/formatRounded.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/d3-format/src/formatSpecifier.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/d3-format/src/formatTypes.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/d3-format/src/identity.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/d3-format/src/locale.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/d3-format/src/precisionFixed.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/d3-format/src/precisionPrefix.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/d3-format/src/precisionRound.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/d3-geo/.eslintrc</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/d3-geo/LICENSE</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/d3-geo/README.md</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/d3-geo/build/d3-geo.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/d3-geo/build/d3-geo.min.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/d3-geo/index.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/d3-geo/package.json</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/d3-geo/rollup.config.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/d3-geo/src/adder.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/d3-geo/src/area.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/d3-geo/src/bounds.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/d3-geo/src/cartesian.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/d3-geo/src/centroid.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/d3-geo/src/circle.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/d3-geo/src/clip/antimeridian.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/d3-geo/src/clip/buffer.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/d3-geo/src/clip/circle.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/d3-geo/src/clip/extent.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/d3-geo/src/clip/index.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/d3-geo/src/clip/line.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/d3-geo/src/clip/rectangle.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/d3-geo/src/clip/rejoin.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/d3-geo/src/compose.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/d3-geo/src/constant.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/d3-geo/src/contains.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/d3-geo/src/distance.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/d3-geo/src/graticule.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/d3-geo/src/identity.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/d3-geo/src/interpolate.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/d3-geo/src/length.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/d3-geo/src/math.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/d3-geo/src/noop.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/d3-geo/src/path/area.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/d3-geo/src/path/bounds.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/d3-geo/src/path/centroid.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/d3-geo/src/path/context.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/d3-geo/src/path/index.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/d3-geo/src/path/measure.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/d3-geo/src/path/string.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/d3-geo/src/pointEqual.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/d3-geo/src/polygonContains.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/d3-geo/src/projection/albers.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/d3-geo/src/projection/albersUsa.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/d3-geo/src/projection/azimuthal.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/d3-geo/src/projection/azimuthalEqualArea.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/d3-geo/src/projection/azimuthalEquidistant.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/d3-geo/src/projection/conic.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/d3-geo/src/projection/conicConformal.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/d3-geo/src/projection/conicEqualArea.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/d3-geo/src/projection/conicEquidistant.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/d3-geo/src/projection/cylindricalEqualArea.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/d3-geo/src/projection/equirectangular.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/d3-geo/src/projection/fit.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/d3-geo/src/projection/gnomonic.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/d3-geo/src/projection/identity.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/d3-geo/src/projection/index.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/d3-geo/src/projection/mercator.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/d3-geo/src/projection/naturalEarth1.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/d3-geo/src/projection/orthographic.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/d3-geo/src/projection/resample.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/d3-geo/src/projection/stereographic.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/d3-geo/src/projection/transverseMercator.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/d3-geo/src/rotation.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/d3-geo/src/stream.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/d3-geo/src/transform.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/d3-hierarchy/.eslintrc</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/d3-hierarchy/.npmignore</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/d3-hierarchy/LICENSE</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/d3-hierarchy/README.md</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/d3-hierarchy/build/d3-hierarchy.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/d3-hierarchy/build/d3-hierarchy.min.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/d3-hierarchy/img/cluster.png</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/d3-hierarchy/img/pack.png</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/d3-hierarchy/img/partition.png</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/d3-hierarchy/img/stratify.png</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/d3-hierarchy/img/tree.png</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/d3-hierarchy/img/treemap.png</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/d3-hierarchy/index.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/d3-hierarchy/package.json</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/d3-hierarchy/src/accessors.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/d3-hierarchy/src/array.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/d3-hierarchy/src/cluster.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/d3-hierarchy/src/constant.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/d3-hierarchy/src/hierarchy/ancestors.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/d3-hierarchy/src/hierarchy/count.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/d3-hierarchy/src/hierarchy/descendants.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/d3-hierarchy/src/hierarchy/each.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/d3-hierarchy/src/hierarchy/eachAfter.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/d3-hierarchy/src/hierarchy/eachBefore.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/d3-hierarchy/src/hierarchy/index.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/d3-hierarchy/src/hierarchy/leaves.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/d3-hierarchy/src/hierarchy/links.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/d3-hierarchy/src/hierarchy/path.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/d3-hierarchy/src/hierarchy/sort.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/d3-hierarchy/src/hierarchy/sum.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/d3-hierarchy/src/pack/enclose.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/d3-hierarchy/src/pack/index.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/d3-hierarchy/src/pack/siblings.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/d3-hierarchy/src/partition.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/d3-hierarchy/src/stratify.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/d3-hierarchy/src/tree.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/d3-hierarchy/src/treemap/binary.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/d3-hierarchy/src/treemap/dice.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/d3-hierarchy/src/treemap/index.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/d3-hierarchy/src/treemap/resquarify.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/d3-hierarchy/src/treemap/round.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/d3-hierarchy/src/treemap/slice.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/d3-hierarchy/src/treemap/sliceDice.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/d3-hierarchy/src/treemap/squarify.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/d3-interpolate/.eslintrc</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/d3-interpolate/LICENSE</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/d3-interpolate/README.md</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/d3-interpolate/build/d3-interpolate.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/d3-interpolate/build/d3-interpolate.min.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/d3-interpolate/img/cubehelix.png</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/d3-interpolate/img/cubehelixGamma.png</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/d3-interpolate/img/cubehelixGammaLong.png</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/d3-interpolate/img/cubehelixLong.png</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/d3-interpolate/img/hcl.png</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/d3-interpolate/img/hclLong.png</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/d3-interpolate/img/hsl.png</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/d3-interpolate/img/hslLong.png</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/d3-interpolate/img/lab.png</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/d3-interpolate/img/rgb.png</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/d3-interpolate/img/rgbGamma.png</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/d3-interpolate/index.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/d3-interpolate/package.json</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/d3-interpolate/src/array.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/d3-interpolate/src/basis.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/d3-interpolate/src/basisClosed.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/d3-interpolate/src/color.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/d3-interpolate/src/constant.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/d3-interpolate/src/cubehelix.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/d3-interpolate/src/date.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/d3-interpolate/src/hcl.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/d3-interpolate/src/hsl.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/d3-interpolate/src/lab.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/d3-interpolate/src/number.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/d3-interpolate/src/object.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/d3-interpolate/src/quantize.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/d3-interpolate/src/rgb.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/d3-interpolate/src/round.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/d3-interpolate/src/string.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/d3-interpolate/src/transform/decompose.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/d3-interpolate/src/transform/index.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/d3-interpolate/src/transform/parse.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/d3-interpolate/src/value.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/d3-interpolate/src/zoom.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/d3-path/.eslintrc</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/d3-path/.npmignore</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/d3-path/LICENSE</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/d3-path/README.md</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/d3-path/build/d3-path.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/d3-path/build/d3-path.min.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/d3-path/index.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/d3-path/package.json</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/d3-path/src/path.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/d3-polygon/.eslintrc</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/d3-polygon/.npmignore</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/d3-polygon/LICENSE</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/d3-polygon/README.md</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/d3-polygon/build/d3-polygon.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/d3-polygon/build/d3-polygon.min.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/d3-polygon/img/hull.png</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/d3-polygon/index.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/d3-polygon/package.json</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/d3-polygon/src/area.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/d3-polygon/src/centroid.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/d3-polygon/src/contains.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/d3-polygon/src/cross.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/d3-polygon/src/hull.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/d3-polygon/src/length.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/d3-quadtree/.eslintrc</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/d3-quadtree/.npmignore</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/d3-quadtree/LICENSE</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/d3-quadtree/README.md</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/d3-quadtree/build/d3-quadtree.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/d3-quadtree/build/d3-quadtree.min.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/d3-quadtree/index.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/d3-quadtree/package.json</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/d3-quadtree/src/add.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/d3-quadtree/src/cover.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/d3-quadtree/src/data.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/d3-quadtree/src/extent.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/d3-quadtree/src/find.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/d3-quadtree/src/quad.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/d3-quadtree/src/quadtree.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/d3-quadtree/src/remove.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/d3-quadtree/src/root.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/d3-quadtree/src/size.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/d3-quadtree/src/visit.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/d3-quadtree/src/visitAfter.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/d3-quadtree/src/x.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/d3-quadtree/src/y.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/d3-queue/.eslintrc</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/d3-queue/.npmignore</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/d3-queue/LICENSE</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/d3-queue/README.md</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/d3-queue/build/d3-queue.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/d3-queue/build/d3-queue.min.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/d3-queue/index.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/d3-queue/package.json</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/d3-queue/src/array.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/d3-queue/src/queue.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/d3-random/.eslintrc</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/d3-random/.npmignore</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/d3-random/LICENSE</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/d3-random/README.md</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/d3-random/build/d3-random.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/d3-random/build/d3-random.min.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/d3-random/index.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/d3-random/package.json</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/d3-random/src/bates.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/d3-random/src/defaultSource.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/d3-random/src/exponential.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/d3-random/src/irwinHall.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/d3-random/src/logNormal.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/d3-random/src/normal.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/d3-random/src/uniform.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/d3-request/.eslintrc</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/d3-request/.npmignore</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/d3-request/LICENSE</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/d3-request/README.md</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/d3-request/bin/rollup-node</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/d3-request/build/d3-request.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/d3-request/build/d3-request.min.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/d3-request/build/d3-request.node.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/d3-request/index.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/d3-request/package.json</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/d3-request/rollup.config.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/d3-request/src/csv.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/d3-request/src/dsv.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/d3-request/src/html.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/d3-request/src/json.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/d3-request/src/request.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/d3-request/src/text.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/d3-request/src/tsv.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/d3-request/src/type.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/d3-request/src/xml.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/d3-scale/.eslintrc</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/d3-scale/LICENSE</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/d3-scale/README.md</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/d3-scale/build/d3-scale.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/d3-scale/build/d3-scale.min.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/d3-scale/img/band.png</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/d3-scale/img/category10.png</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/d3-scale/img/category20.png</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/d3-scale/img/category20b.png</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/d3-scale/img/category20c.png</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/d3-scale/img/cool.png</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/d3-scale/img/cubehelix.png</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/d3-scale/img/inferno.png</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/d3-scale/img/magma.png</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/d3-scale/img/plasma.png</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/d3-scale/img/point.png</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/d3-scale/img/rainbow.png</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/d3-scale/img/viridis.png</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/d3-scale/img/warm.png</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/d3-scale/index.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/d3-scale/package.json</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/d3-scale/src/array.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/d3-scale/src/band.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/d3-scale/src/category10.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/d3-scale/src/category20.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/d3-scale/src/category20b.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/d3-scale/src/category20c.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/d3-scale/src/colors.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/d3-scale/src/constant.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/d3-scale/src/continuous.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/d3-scale/src/cubehelix.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/d3-scale/src/identity.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/d3-scale/src/linear.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/d3-scale/src/log.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/d3-scale/src/nice.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/d3-scale/src/number.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/d3-scale/src/ordinal.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/d3-scale/src/pow.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/d3-scale/src/quantile.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/d3-scale/src/quantize.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/d3-scale/src/rainbow.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/d3-scale/src/sequential.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/d3-scale/src/threshold.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/d3-scale/src/tickFormat.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/d3-scale/src/time.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/d3-scale/src/utcTime.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/d3-scale/src/viridis.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/d3-selection/.eslintrc</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/d3-selection/LICENSE</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/d3-selection/README.md</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/d3-selection/dist/d3-selection.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/d3-selection/dist/d3-selection.min.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/d3-selection/index.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/d3-selection/package.json</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/d3-selection/rollup.config.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/d3-selection/src/constant.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/d3-selection/src/create.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/d3-selection/src/creator.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/d3-selection/src/local.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/d3-selection/src/matcher.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/d3-selection/src/mouse.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/d3-selection/src/namespace.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/d3-selection/src/namespaces.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/d3-selection/src/point.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/d3-selection/src/select.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/d3-selection/src/selectAll.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/d3-selection/src/selection/append.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/d3-selection/src/selection/attr.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/d3-selection/src/selection/call.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/d3-selection/src/selection/classed.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/d3-selection/src/selection/clone.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/d3-selection/src/selection/data.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/d3-selection/src/selection/datum.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/d3-selection/src/selection/dispatch.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/d3-selection/src/selection/each.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/d3-selection/src/selection/empty.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/d3-selection/src/selection/enter.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/d3-selection/src/selection/exit.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/d3-selection/src/selection/filter.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/d3-selection/src/selection/html.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/d3-selection/src/selection/index.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/d3-selection/src/selection/insert.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/d3-selection/src/selection/lower.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/d3-selection/src/selection/merge.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/d3-selection/src/selection/node.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/d3-selection/src/selection/nodes.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/d3-selection/src/selection/on.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/d3-selection/src/selection/order.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/d3-selection/src/selection/property.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/d3-selection/src/selection/raise.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/d3-selection/src/selection/remove.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/d3-selection/src/selection/select.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/d3-selection/src/selection/selectAll.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/d3-selection/src/selection/size.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/d3-selection/src/selection/sort.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/d3-selection/src/selection/sparse.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/d3-selection/src/selection/style.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/d3-selection/src/selection/text.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/d3-selection/src/selector.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/d3-selection/src/selectorAll.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/d3-selection/src/sourceEvent.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/d3-selection/src/touch.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/d3-selection/src/touches.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/d3-selection/src/window.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/d3-shape/.eslintrc</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/d3-shape/.npmignore</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/d3-shape/LICENSE</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/d3-shape/README.md</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/d3-shape/build/d3-shape.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/d3-shape/build/d3-shape.min.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/d3-shape/index.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/d3-shape/package.json</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/d3-shape/src/arc.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/d3-shape/src/area.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/d3-shape/src/areaRadial.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/d3-shape/src/array.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/d3-shape/src/constant.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/d3-shape/src/curve/basis.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/d3-shape/src/curve/basisClosed.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/d3-shape/src/curve/basisOpen.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/d3-shape/src/curve/bundle.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/d3-shape/src/curve/cardinal.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/d3-shape/src/curve/cardinalClosed.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/d3-shape/src/curve/cardinalOpen.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/d3-shape/src/curve/catmullRom.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/d3-shape/src/curve/catmullRomClosed.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/d3-shape/src/curve/catmullRomOpen.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/d3-shape/src/curve/linear.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/d3-shape/src/curve/linearClosed.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/d3-shape/src/curve/monotone.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/d3-shape/src/curve/natural.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/d3-shape/src/curve/radial.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/d3-shape/src/curve/step.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/d3-shape/src/descending.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/d3-shape/src/identity.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/d3-shape/src/line.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/d3-shape/src/lineRadial.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/d3-shape/src/link/index.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/d3-shape/src/math.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/d3-shape/src/noop.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/d3-shape/src/offset/diverging.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/d3-shape/src/offset/expand.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/d3-shape/src/offset/none.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/d3-shape/src/offset/silhouette.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/d3-shape/src/offset/wiggle.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/d3-shape/src/order/ascending.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/d3-shape/src/order/descending.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/d3-shape/src/order/insideOut.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/d3-shape/src/order/none.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/d3-shape/src/order/reverse.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/d3-shape/src/pie.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/d3-shape/src/point.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/d3-shape/src/pointRadial.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/d3-shape/src/stack.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/d3-shape/src/symbol.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/d3-shape/src/symbol/circle.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/d3-shape/src/symbol/cross.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/d3-shape/src/symbol/diamond.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/d3-shape/src/symbol/square.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/d3-shape/src/symbol/star.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/d3-shape/src/symbol/triangle.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/d3-shape/src/symbol/wye.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/d3-time-format/.eslintrc</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/d3-time-format/LICENSE</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/d3-time-format/README.md</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/d3-time-format/build/d3-time-format.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/d3-time-format/build/d3-time-format.min.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/d3-time-format/index.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/d3-time-format/locale/ca-ES.json</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/d3-time-format/locale/cs-CZ.json</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/d3-time-format/locale/da-DK.json</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/d3-time-format/locale/de-CH.json</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/d3-time-format/locale/de-DE.json</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/d3-time-format/locale/en-CA.json</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/d3-time-format/locale/en-GB.json</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/d3-time-format/locale/en-US.json</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/d3-time-format/locale/es-ES.json</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/d3-time-format/locale/es-MX.json</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/d3-time-format/locale/fi-FI.json</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/d3-time-format/locale/fr-CA.json</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/d3-time-format/locale/fr-FR.json</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/d3-time-format/locale/he-IL.json</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/d3-time-format/locale/hu-HU.json</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/d3-time-format/locale/it-IT.json</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/d3-time-format/locale/ja-JP.json</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/d3-time-format/locale/ko-KR.json</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/d3-time-format/locale/mk-MK.json</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/d3-time-format/locale/nl-NL.json</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/d3-time-format/locale/pl-PL.json</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/d3-time-format/locale/pt-BR.json</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/d3-time-format/locale/ru-RU.json</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/d3-time-format/locale/sv-SE.json</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/d3-time-format/locale/tr-TR.json</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/d3-time-format/locale/uk-UA.json</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/d3-time-format/locale/zh-CN.json</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/d3-time-format/package.json</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/d3-time-format/rollup.config.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/d3-time-format/src/defaultLocale.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/d3-time-format/src/isoFormat.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/d3-time-format/src/isoParse.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/d3-time-format/src/locale.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/d3-time/.eslintrc</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/d3-time/LICENSE</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/d3-time/README.md</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/d3-time/build/d3-time.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/d3-time/build/d3-time.min.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/d3-time/index.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/d3-time/package.json</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/d3-time/src/day.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/d3-time/src/duration.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/d3-time/src/hour.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/d3-time/src/interval.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/d3-time/src/millisecond.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/d3-time/src/minute.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/d3-time/src/month.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/d3-time/src/second.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/d3-time/src/utcDay.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/d3-time/src/utcHour.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/d3-time/src/utcMinute.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/d3-time/src/utcMonth.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/d3-time/src/utcWeek.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/d3-time/src/utcYear.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/d3-time/src/week.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/d3-time/src/year.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/d3-timer/.eslintrc</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/d3-timer/.npmignore</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/d3-timer/LICENSE</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/d3-timer/README.md</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/d3-timer/build/d3-timer.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/d3-timer/build/d3-timer.min.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/d3-timer/index.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/d3-timer/package.json</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/d3-timer/rollup.config.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/d3-timer/src/interval.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/d3-timer/src/timeout.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/d3-timer/src/timer.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/d3-transition/.eslintrc</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/d3-transition/LICENSE</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/d3-transition/README.md</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/d3-transition/build/d3-transition.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/d3-transition/build/d3-transition.min.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/d3-transition/index.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/d3-transition/package.json</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/d3-transition/src/active.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/d3-transition/src/interrupt.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/d3-transition/src/selection/index.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/d3-transition/src/selection/interrupt.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/d3-transition/src/selection/transition.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/d3-transition/src/transition/attr.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/d3-transition/src/transition/attrTween.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/d3-transition/src/transition/delay.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/d3-transition/src/transition/duration.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/d3-transition/src/transition/ease.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/d3-transition/src/transition/filter.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/d3-transition/src/transition/index.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/d3-transition/src/transition/interpolate.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/d3-transition/src/transition/merge.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/d3-transition/src/transition/on.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/d3-transition/src/transition/remove.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/d3-transition/src/transition/schedule.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/d3-transition/src/transition/select.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/d3-transition/src/transition/selectAll.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/d3-transition/src/transition/selection.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/d3-transition/src/transition/style.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/d3-transition/src/transition/styleTween.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/d3-transition/src/transition/text.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/d3-transition/src/transition/transition.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/d3-transition/src/transition/tween.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/d3-voronoi/.eslintrc</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/d3-voronoi/.npmignore</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/d3-voronoi/LICENSE</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/d3-voronoi/README.md</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/d3-voronoi/build/d3-voronoi.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/d3-voronoi/build/d3-voronoi.min.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/d3-voronoi/graph.png</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/d3-voronoi/index.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/d3-voronoi/package.json</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/d3-voronoi/src/Beach.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/d3-voronoi/src/Cell.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/d3-voronoi/src/Circle.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/d3-voronoi/src/Diagram.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/d3-voronoi/src/Edge.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/d3-voronoi/src/RedBlackTree.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/d3-voronoi/src/constant.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/d3-voronoi/src/point.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/d3-voronoi/src/voronoi.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/d3-zoom/.eslintrc</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/d3-zoom/LICENSE</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/d3-zoom/README.md</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/d3-zoom/build/d3-zoom.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/d3-zoom/build/d3-zoom.min.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/d3-zoom/img/axis.png</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/d3-zoom/img/brush.png</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/d3-zoom/img/dots.png</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/d3-zoom/img/transition.png</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/d3-zoom/index.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/d3-zoom/package.json</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/d3-zoom/rollup.config.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/d3-zoom/src/constant.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/d3-zoom/src/event.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/d3-zoom/src/noevent.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/d3-zoom/src/transform.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/d3-zoom/src/zoom.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/d3/API.md</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/d3/CHANGES.md</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/d3/ISSUE_TEMPLATE.md</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/d3/LICENSE</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/d3/README.md</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/d3/build/d3.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/d3/build/d3.min.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/d3/build/d3.node.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/d3/build/package.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/d3/img/axis-v3.png</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/d3/img/axis-v4.png</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/d3/img/pack-v3.png</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/d3/img/pack-v4.png</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/d3/img/stratify.png</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/d3/index.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/d3/package.json</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/d3/rollup.config.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/d3/rollup.node.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/d3/yarn.lock</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/dagre-d3-renderer/.ackrc</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/dagre-d3-renderer/.editorconfig</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/dagre-d3-renderer/LICENSE</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/dagre-d3-renderer/README.md</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/dagre-d3-renderer/dist/dagre-d3.core.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/dagre-d3-renderer/dist/dagre-d3.core.js.map</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/dagre-d3-renderer/dist/dagre-d3.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/dagre-d3-renderer/dist/dagre-d3.js.map</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/dagre-d3-renderer/dist/demo/arrows.html</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/dagre-d3-renderer/dist/demo/clusters.html</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/dagre-d3-renderer/dist/demo/demo.css</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/dagre-d3-renderer/dist/demo/demo.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/dagre-d3-renderer/dist/demo/dom.html</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/dagre-d3-renderer/dist/demo/etl-status.html</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/dagre-d3-renderer/dist/demo/graph-story-board.html</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/dagre-d3-renderer/dist/demo/graphlib-dot.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/dagre-d3-renderer/dist/demo/hover.html</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/dagre-d3-renderer/dist/demo/interactive-demo.html</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/dagre-d3-renderer/dist/demo/jquery-1.9.1.min.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/dagre-d3-renderer/dist/demo/sentence-tokenization.html</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/dagre-d3-renderer/dist/demo/shapes.html</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/dagre-d3-renderer/dist/demo/style-attrs.html</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/dagre-d3-renderer/dist/demo/svg-labels.html</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/dagre-d3-renderer/dist/demo/tcp-state-diagram.html</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/dagre-d3-renderer/dist/demo/test.html</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/dagre-d3-renderer/dist/demo/tipsy.css</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/dagre-d3-renderer/dist/demo/tipsy.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/dagre-d3-renderer/dist/demo/user-defined.html</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/dagre-d3-renderer/index.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/dagre-d3-renderer/karma.conf.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/dagre-d3-renderer/lib/arrows.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/dagre-d3-renderer/lib/create-clusters.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/dagre-d3-renderer/lib/create-edge-labels.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/dagre-d3-renderer/lib/create-edge-paths.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/dagre-d3-renderer/lib/create-nodes.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/dagre-d3-renderer/lib/intersect/index.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/dagre-d3-renderer/lib/intersect/intersect-circle.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/dagre-d3-renderer/lib/intersect/intersect-ellipse.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/dagre-d3-renderer/lib/intersect/intersect-line.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/dagre-d3-renderer/lib/intersect/intersect-node.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/dagre-d3-renderer/lib/intersect/intersect-polygon.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/dagre-d3-renderer/lib/intersect/intersect-rect.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/dagre-d3-renderer/lib/label/add-html-label.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/dagre-d3-renderer/lib/label/add-label.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/dagre-d3-renderer/lib/label/add-svg-label.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/dagre-d3-renderer/lib/label/add-text-label.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/dagre-d3-renderer/lib/position-clusters.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/dagre-d3-renderer/lib/position-edge-labels.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/dagre-d3-renderer/lib/position-nodes.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/dagre-d3-renderer/lib/render.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/dagre-d3-renderer/lib/shapes.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/dagre-d3-renderer/lib/util.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/dagre-d3-renderer/package.json</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/dagre-d3-renderer/todo.md</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/dagre-d3-renderer/webpack.config.babel.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/dagre-d3-renderer/yarn-error.log</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/dagre-d3-renderer/yarn.lock</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/dagre-layout/LICENSE</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/dagre-layout/README.md</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/dagre-layout/dist/dagre-layout.core.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/dagre-layout/dist/dagre-layout.core.js.map</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/dagre-layout/dist/dagre-layout.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/dagre-layout/dist/dagre-layout.js.map</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/dagre-layout/index.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/dagre-layout/lib/acyclic.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/dagre-layout/lib/add-border-segments.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/dagre-layout/lib/coordinate-system.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/dagre-layout/lib/data/list.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/dagre-layout/lib/debug.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/dagre-layout/lib/greedy-fas.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/dagre-layout/lib/layout.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/dagre-layout/lib/nesting-graph.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/dagre-layout/lib/normalize.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/dagre-layout/lib/order/add-subgraph-constraints.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/dagre-layout/lib/order/barycenter.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/dagre-layout/lib/order/build-layer-graph.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/dagre-layout/lib/order/cross-count.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/dagre-layout/lib/order/index.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/dagre-layout/lib/order/init-order.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/dagre-layout/lib/order/resolve-conflicts.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/dagre-layout/lib/order/sort-subgraph.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/dagre-layout/lib/order/sort.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/dagre-layout/lib/parent-dummy-chains.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/dagre-layout/lib/position/bk.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/dagre-layout/lib/position/index.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/dagre-layout/lib/rank/feasible-tree.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/dagre-layout/lib/rank/index.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/dagre-layout/lib/rank/network-simplex.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/dagre-layout/lib/rank/util.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/dagre-layout/lib/util.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/dagre-layout/package.json</Path>
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/debug/.coveralls.yml</Path>
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/debug/.eslintrc</Path>
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/debug/.npmignore</Path>
@@ -3419,12 +4770,6 @@
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/debug/src/debug.js</Path>
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/debug/src/index.js</Path>
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/debug/src/node.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/delayed-stream/.npmignore</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/delayed-stream/License</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/delayed-stream/Makefile</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/delayed-stream/Readme.md</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/delayed-stream/lib/delayed_stream.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/delayed-stream/package.json</Path>
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/dom-serializer/LICENSE</Path>
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/dom-serializer/index.js</Path>
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/dom-serializer/node_modules/domelementtype/LICENSE</Path>
@@ -3608,16 +4953,6 @@
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/event-pubsub/examples/node/extending.js</Path>
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/event-pubsub/examples/node/multiple.js</Path>
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/event-pubsub/package.json</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/extend/.eslintrc</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/extend/.jscs.json</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/extend/.npmignore</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/extend/.travis.yml</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/extend/CHANGELOG.md</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/extend/LICENSE</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/extend/README.md</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/extend/component.json</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/extend/index.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/extend/package.json</Path>
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/fbjs/CHANGELOG.md</Path>
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/fbjs/LICENSE</Path>
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/fbjs/README.md</Path>
@@ -3827,6 +5162,10 @@
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/fbjs/lib/xhrSimpleDataSerializer.js.flow</Path>
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/fbjs/module-map.json</Path>
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/fbjs/package.json</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/file-url/index.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/file-url/license</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/file-url/package.json</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/file-url/readme.md</Path>
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/filename-reserved-regex/index.js</Path>
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/filename-reserved-regex/license</Path>
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/filename-reserved-regex/package.json</Path>
@@ -3930,24 +5269,67 @@
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/font-awesome/scss/_stacked.scss</Path>
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/font-awesome/scss/_variables.scss</Path>
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/font-awesome/scss/font-awesome.scss</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/form-data/License</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/form-data/Readme.md</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/form-data/lib/browser.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/form-data/lib/form_data.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/form-data/package.json</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/formidable/.npmignore</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/formidable/.travis.yml</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/formidable/LICENSE</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/formidable/Readme.md</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/formidable/index.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/formidable/lib/file.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/formidable/lib/incoming_form.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/formidable/lib/index.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/formidable/lib/json_parser.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/formidable/lib/multipart_parser.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/formidable/lib/octet_parser.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/formidable/lib/querystring_parser.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/formidable/package.json</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/fs-extra/CHANGELOG.md</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/fs-extra/LICENSE</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/fs-extra/README.md</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/fs-extra/docs/copy-sync.md</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/fs-extra/docs/copy.md</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/fs-extra/docs/emptyDir-sync.md</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/fs-extra/docs/emptyDir.md</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/fs-extra/docs/ensureDir-sync.md</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/fs-extra/docs/ensureDir.md</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/fs-extra/docs/ensureFile-sync.md</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/fs-extra/docs/ensureFile.md</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/fs-extra/docs/ensureLink-sync.md</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/fs-extra/docs/ensureLink.md</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/fs-extra/docs/ensureSymlink-sync.md</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/fs-extra/docs/ensureSymlink.md</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/fs-extra/docs/fs-read-write.md</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/fs-extra/docs/move-sync.md</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/fs-extra/docs/move.md</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/fs-extra/docs/outputFile-sync.md</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/fs-extra/docs/outputFile.md</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/fs-extra/docs/outputJson-sync.md</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/fs-extra/docs/outputJson.md</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/fs-extra/docs/pathExists-sync.md</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/fs-extra/docs/pathExists.md</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/fs-extra/docs/readJson-sync.md</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/fs-extra/docs/readJson.md</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/fs-extra/docs/remove-sync.md</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/fs-extra/docs/remove.md</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/fs-extra/docs/writeJson-sync.md</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/fs-extra/docs/writeJson.md</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/fs-extra/lib/copy-sync/copy-sync.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/fs-extra/lib/copy-sync/index.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/fs-extra/lib/copy/copy.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/fs-extra/lib/copy/index.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/fs-extra/lib/empty/index.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/fs-extra/lib/ensure/file.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/fs-extra/lib/ensure/index.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/fs-extra/lib/ensure/link.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/fs-extra/lib/ensure/symlink-paths.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/fs-extra/lib/ensure/symlink-type.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/fs-extra/lib/ensure/symlink.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/fs-extra/lib/fs/index.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/fs-extra/lib/index.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/fs-extra/lib/json/index.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/fs-extra/lib/json/jsonfile.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/fs-extra/lib/json/output-json-sync.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/fs-extra/lib/json/output-json.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/fs-extra/lib/mkdirs/index.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/fs-extra/lib/mkdirs/mkdirs-sync.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/fs-extra/lib/mkdirs/mkdirs.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/fs-extra/lib/mkdirs/win32.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/fs-extra/lib/move-sync/index.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/fs-extra/lib/move/index.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/fs-extra/lib/output/index.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/fs-extra/lib/path-exists/index.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/fs-extra/lib/remove/index.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/fs-extra/lib/remove/rimraf.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/fs-extra/lib/util/assign.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/fs-extra/lib/util/buffer.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/fs-extra/lib/util/utimes.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/fs-extra/package.json</Path>
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/fs-plus/LICENSE.md</Path>
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/fs-plus/README.md</Path>
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/fs-plus/appveyor.yml</Path>
@@ -3976,10 +5358,49 @@
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/graceful-fs/legacy-streams.js</Path>
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/graceful-fs/package.json</Path>
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/graceful-fs/polyfills.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/graphlibrary/.ackrc</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/graphlibrary/.editorconfig</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/graphlibrary/.travis.yml</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/graphlibrary/LICENSE</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/graphlibrary/README.md</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/graphlibrary/dist/graphlib.core.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/graphlibrary/dist/graphlib.core.min.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/graphlibrary/dist/graphlib.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/graphlibrary/dist/graphlib.min.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/graphlibrary/index.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/graphlibrary/karma.amd.conf.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/graphlibrary/karma.conf.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/graphlibrary/karma.core.conf.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/graphlibrary/lib/alg/components.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/graphlibrary/lib/alg/dfs.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/graphlibrary/lib/alg/dijkstra-all.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/graphlibrary/lib/alg/dijkstra.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/graphlibrary/lib/alg/find-cycles.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/graphlibrary/lib/alg/floyd-warshall.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/graphlibrary/lib/alg/index.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/graphlibrary/lib/alg/is-acyclic.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/graphlibrary/lib/alg/postorder.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/graphlibrary/lib/alg/preorder.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/graphlibrary/lib/alg/prim.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/graphlibrary/lib/alg/tarjan.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/graphlibrary/lib/alg/topsort.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/graphlibrary/lib/data/priority-queue.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/graphlibrary/lib/graph.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/graphlibrary/lib/json.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/graphlibrary/lib/lodash.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/graphlibrary/package.json</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/graphlibrary/todo.md</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/graphlibrary/yarn.lock</Path>
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/has-flag/index.js</Path>
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/has-flag/license</Path>
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/has-flag/package.json</Path>
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/has-flag/readme.md</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/he/LICENSE-MIT.txt</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/he/README.md</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/he/bin/he</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/he/he.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/he/man/he.1</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/he/package.json</Path>
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/hoist-non-react-statics/LICENSE.md</Path>
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/hoist-non-react-statics/README.md</Path>
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/hoist-non-react-statics/dist/hoist-non-react-statics.cjs.js</Path>
@@ -4054,6 +5475,10 @@
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/immutable/dist/immutable.js.flow</Path>
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/immutable/dist/immutable.min.js</Path>
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/immutable/package.json</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/imurmurhash/README.md</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/imurmurhash/imurmurhash.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/imurmurhash/imurmurhash.min.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/imurmurhash/package.json</Path>
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/inflight/LICENSE</Path>
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/inflight/README.md</Path>
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/inflight/inflight.js</Path>
@@ -4078,11 +5503,6 @@
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/is-arrayish/README.md</Path>
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/is-arrayish/index.js</Path>
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/is-arrayish/package.json</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/is-buffer/LICENSE</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/is-buffer/README.md</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/is-buffer/index.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/is-buffer/package.json</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/is-buffer/test/basic.js</Path>
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/is-obj/index.js</Path>
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/is-obj/license</Path>
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/is-obj/package.json</Path>
@@ -4228,6 +5648,11 @@
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/js-tokens/README.md</Path>
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/js-tokens/index.js</Path>
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/js-tokens/package.json</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/jsonfile/CHANGELOG.md</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/jsonfile/LICENSE</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/jsonfile/README.md</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/jsonfile/index.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/jsonfile/package.json</Path>
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/katex/LICENSE.txt</Path>
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/katex/README.md</Path>
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/katex/cli.js</Path>
@@ -6111,7 +7536,6 @@
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/lodash/zipObject.js</Path>
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/lodash/zipObjectDeep.js</Path>
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/lodash/zipWith.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/loose-envify/.npmignore</Path>
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/loose-envify/LICENSE</Path>
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/loose-envify/README.md</Path>
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/loose-envify/cli.js</Path>
@@ -6124,19 +7548,10 @@
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/lowercase-keys/license</Path>
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/lowercase-keys/package.json</Path>
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/lowercase-keys/readme.md</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/markdown-it-checkbox/CHANGELOG.md</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/markdown-it-checkbox/Gulpfile.coffee</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/markdown-it-checkbox/LICENSE</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/markdown-it-checkbox/README.md</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/markdown-it-checkbox/bower.json</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/markdown-it-checkbox/build/index.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/markdown-it-checkbox/coffeelint.json</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/markdown-it-checkbox/dist/markdown-it-checkbox.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/markdown-it-checkbox/dist/markdown-it-checkbox.min.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/markdown-it-checkbox/index.coffee</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/markdown-it-checkbox/index.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/markdown-it-checkbox/index.js_backup</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/markdown-it-checkbox/package.json</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/markdown-it-admonition/LICENSE</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/markdown-it-admonition/index.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/markdown-it-admonition/package.json</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/markdown-it-admonition/readme.md</Path>
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/markdown-it-emoji/CHANGELOG.md</Path>
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/markdown-it-emoji/LICENSE</Path>
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/markdown-it-emoji/README.md</Path>
@@ -6298,6 +7713,16 @@
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/markdown-it-plantuml/index.js</Path>
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/markdown-it-plantuml/lib/deflate.js</Path>
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/markdown-it-plantuml/package.json</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/markdown-it-smartarrows/.npmignore</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/markdown-it-smartarrows/.travis.yml</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/markdown-it-smartarrows/LICENSE</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/markdown-it-smartarrows/Makefile</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/markdown-it-smartarrows/README.md</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/markdown-it-smartarrows/dist/markdown-it-linkscheme.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/markdown-it-smartarrows/dist/markdown-it-linkscheme.min.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/markdown-it-smartarrows/index.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/markdown-it-smartarrows/package.json</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/markdown-it-smartarrows/test/test.js</Path>
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/markdown-it/CHANGELOG.md</Path>
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/markdown-it/LICENSE</Path>
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/markdown-it/README.md</Path>
@@ -6363,13 +7788,6 @@
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/match-at/lib/matchAt.js</Path>
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/match-at/lib/matchAt.js.flow</Path>
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/match-at/package.json</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/md5/.npmignore</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/md5/.travis.yml</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/md5/LICENSE</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/md5/README.md</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/md5/md5.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/md5/package.json</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/md5/test.js</Path>
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/mdurl/CHANGELOG.md</Path>
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/mdurl/LICENSE</Path>
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/mdurl/README.md</Path>
@@ -6379,31 +7797,68 @@
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/mdurl/index.js</Path>
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/mdurl/package.json</Path>
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/mdurl/parse.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/methods/HISTORY.md</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/methods/LICENSE</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/methods/README.md</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/methods/index.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/methods/package.json</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/mime-db/HISTORY.md</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/mime-db/LICENSE</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/mime-db/README.md</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/mime-db/db.json</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/mime-db/index.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/mime-db/package.json</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/mime-types/HISTORY.md</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/mime-types/LICENSE</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/mime-types/README.md</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/mime-types/index.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/mime-types/package.json</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/mime/.npmignore</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/mime/LICENSE</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/mime/README.md</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/mime/build/build.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/mime/build/test.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/mime/cli.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/mime/mime.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/mime/package.json</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/mime/types.json</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/meaw/LICENSE</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/meaw/README.md</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/meaw/lib/meaw.cjs.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/meaw/lib/meaw.cjs.js.map</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/meaw/lib/meaw.es.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/meaw/lib/meaw.es.js.map</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/meaw/package.json</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/mermaid/CHANGELOG.md</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/mermaid/LICENSE</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/mermaid/README.md</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/mermaid/dist/index.html</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/mermaid/dist/mermaid.core.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/mermaid/dist/mermaid.core.js.map</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/mermaid/dist/mermaid.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/mermaid/dist/mermaid.js.map</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/mermaid/dist/mermaid.min.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/mermaid/dist/mermaid.min.js.map</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/mermaid/package.json</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/mermaid/src/diagrams/class/classDb.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/mermaid/src/diagrams/class/classDiagram.spec.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/mermaid/src/diagrams/class/classRenderer.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/mermaid/src/diagrams/class/parser/classDiagram.jison</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/mermaid/src/diagrams/class/parser/classDiagram.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/mermaid/src/diagrams/flowchart/flowDb.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/mermaid/src/diagrams/flowchart/flowRenderer.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/mermaid/src/diagrams/flowchart/parser/flow.jison</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/mermaid/src/diagrams/flowchart/parser/flow.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/mermaid/src/diagrams/flowchart/parser/flow.spec.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/mermaid/src/diagrams/gantt/gantt.spec.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/mermaid/src/diagrams/gantt/ganttDb.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/mermaid/src/diagrams/gantt/ganttDb.spec.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/mermaid/src/diagrams/gantt/ganttRenderer.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/mermaid/src/diagrams/gantt/parser/gantt.jison</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/mermaid/src/diagrams/gantt/parser/gantt.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/mermaid/src/diagrams/git/gitGraphAst.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/mermaid/src/diagrams/git/gitGraphParser.spec.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/mermaid/src/diagrams/git/gitGraphRenderer.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/mermaid/src/diagrams/git/parser/gitGraph.jison</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/mermaid/src/diagrams/git/parser/gitGraph.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/mermaid/src/diagrams/sequence/parser/sequenceDiagram.jison</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/mermaid/src/diagrams/sequence/parser/sequenceDiagram.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/mermaid/src/diagrams/sequence/sequenceDb.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/mermaid/src/diagrams/sequence/sequenceDiagram.spec.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/mermaid/src/diagrams/sequence/sequenceRenderer.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/mermaid/src/diagrams/sequence/svgDraw.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/mermaid/src/logger.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/mermaid/src/mermaid.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/mermaid/src/mermaid.spec.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/mermaid/src/mermaidAPI.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/mermaid/src/mermaidAPI.spec.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/mermaid/src/themes/class.scss</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/mermaid/src/themes/dark/index.scss</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/mermaid/src/themes/default/index.scss</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/mermaid/src/themes/flowchart.scss</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/mermaid/src/themes/forest/index.scss</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/mermaid/src/themes/gantt.scss</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/mermaid/src/themes/git.scss</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/mermaid/src/themes/mermaid.scss</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/mermaid/src/themes/neutral/index.scss</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/mermaid/src/themes/sequence.scss</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/mermaid/src/utils.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/mermaid/src/utils.spec.js</Path>
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/minimatch/LICENSE</Path>
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/minimatch/README.md</Path>
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/minimatch/minimatch.js</Path>
@@ -6809,6 +8264,46 @@
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/moment/src/locale/zh-hk.js</Path>
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/moment/src/locale/zh-tw.js</Path>
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/moment/src/moment.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/mousetrap-global-bind/.npmignore</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/mousetrap-global-bind/LICENSE</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/mousetrap-global-bind/README.md</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/mousetrap-global-bind/mousetrap-global-bind.d.ts</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/mousetrap-global-bind/mousetrap-global-bind.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/mousetrap-global-bind/mousetrap-global-bind.min.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/mousetrap-global-bind/package.json</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/mousetrap-global-bind/typings.json</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/mousetrap/Gruntfile.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/mousetrap/LICENSE</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/mousetrap/README.md</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/mousetrap/mousetrap.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/mousetrap/mousetrap.min.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/mousetrap/package.json</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/mousetrap/plugins/README.md</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/mousetrap/plugins/bind-dictionary/README.md</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/mousetrap/plugins/bind-dictionary/mousetrap-bind-dictionary.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/mousetrap/plugins/bind-dictionary/mousetrap-bind-dictionary.min.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/mousetrap/plugins/global-bind/README.md</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/mousetrap/plugins/global-bind/mousetrap-global-bind.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/mousetrap/plugins/global-bind/mousetrap-global-bind.min.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/mousetrap/plugins/pause/README.md</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/mousetrap/plugins/pause/mousetrap-pause.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/mousetrap/plugins/pause/mousetrap-pause.min.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/mousetrap/plugins/record/README.md</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/mousetrap/plugins/record/mousetrap-record.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/mousetrap/plugins/record/mousetrap-record.min.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/mousetrap/plugins/record/tests/index.html</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/mousetrap/plugins/record/tests/jelly.css</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/mousetrap/plugins/record/tests/jelly.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/mousetrap/tests/libs/chai-1.6.0.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/mousetrap/tests/libs/jquery-1.7.2.min.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/mousetrap/tests/libs/key-event.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/mousetrap/tests/libs/mocha-1.9.0.css</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/mousetrap/tests/libs/mocha-1.9.0.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/mousetrap/tests/libs/sinon-1.7.1.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/mousetrap/tests/libs/sinon-chai-2.4.0.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/mousetrap/tests/libs/sinon-ie-1.7.1.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/mousetrap/tests/mousetrap.html</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/mousetrap/tests/test.mousetrap.js</Path>
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/ms/index.js</Path>
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/ms/license.md</Path>
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/ms/package.json</Path>
@@ -7063,23 +8558,6 @@
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/prop-types/package.json</Path>
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/prop-types/prop-types.js</Path>
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/prop-types/prop-types.min.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/qs/.jshintignore</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/qs/.jshintrc</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/qs/.npmignore</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/qs/.travis.yml</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/qs/CHANGELOG.md</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/qs/CONTRIBUTING.md</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/qs/LICENSE</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/qs/Makefile</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/qs/README.md</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/qs/index.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/qs/lib/index.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/qs/lib/parse.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/qs/lib/stringify.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/qs/lib/utils.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/qs/package.json</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/qs/test/parse.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/qs/test/stringify.js</Path>
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/raphael/.eslintrc.js</Path>
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/raphael/.npmignore</Path>
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/raphael/CONTRIBUTING.md</Path>
@@ -7119,6 +8597,10 @@
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/react-codemirror/lib/Codemirror.js</Path>
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/react-codemirror/package.json</Path>
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/react-codemirror/src/Codemirror.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/react-debounce-render/LICENSE.md</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/react-debounce-render/README.md</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/react-debounce-render/lib/index.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/react-debounce-render/package.json</Path>
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/react-dom/LICENSE</Path>
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/react-dom/README.md</Path>
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/react-dom/dist/react-dom-server.js</Path>
@@ -7430,16 +8912,6 @@
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/readable-stream/transform.js</Path>
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/readable-stream/writable-browser.js</Path>
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/readable-stream/writable.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/reduce-component/.npmignore</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/reduce-component/History.md</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/reduce-component/LICENSE</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/reduce-component/Makefile</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/reduce-component/Readme.md</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/reduce-component/component.json</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/reduce-component/index.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/reduce-component/package.json</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/reduce-component/test/index.html</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/reduce-component/test/reduce.js</Path>
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/redux/CHANGELOG.md</Path>
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/redux/LICENSE.md</Path>
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/redux/README.md</Path>
@@ -7478,6 +8950,33 @@
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/rimraf/bin.js</Path>
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/rimraf/package.json</Path>
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/rimraf/rimraf.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/rw/.eslintrc</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/rw/.npmignore</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/rw/LICENSE</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/rw/README.md</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/rw/index.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/rw/lib/rw/dash.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/rw/lib/rw/decode.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/rw/lib/rw/encode.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/rw/lib/rw/read-file-sync.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/rw/lib/rw/read-file.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/rw/lib/rw/write-file-sync.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/rw/lib/rw/write-file.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/rw/package.json</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/rw/test/cat-async</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/rw/test/cat-sync</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/rw/test/encode-object-async</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/rw/test/encode-object-sync</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/rw/test/encode-string-async</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/rw/test/encode-string-sync</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/rw/test/encoding-async</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/rw/test/encoding-sync</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/rw/test/run-tests</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/rw/test/utf8.txt</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/rw/test/wc-async</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/rw/test/wc-sync</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/rw/test/write-async</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/rw/test/write-sync</Path>
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/safe-buffer/LICENSE</Path>
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/safe-buffer/README.md</Path>
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/safe-buffer/index.d.ts</Path>
@@ -7527,6 +9026,10 @@
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/sanitize-html/package.json</Path>
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/sanitize-html/src/index.js</Path>
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/sanitize-html/test/test.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/scope-css/.travis.yml</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/scope-css/index.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/scope-css/package.json</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/scope-css/readme.md</Path>
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/semver/LICENSE</Path>
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/semver/README.md</Path>
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/semver/bin/semver</Path>
@@ -7620,101 +9123,6 @@
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/striptags/package.json</Path>
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/striptags/striptags.js</Path>
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/striptags/test/striptags-test.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/superagent-promise/.npmignore</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/superagent-promise/.travis.yml</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/superagent-promise/LICENSE</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/superagent-promise/Makefile</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/superagent-promise/README.md</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/superagent-promise/browser-test.opts</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/superagent-promise/browser_test.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/superagent-promise/component.json</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/superagent-promise/index.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/superagent-promise/index_test.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/superagent-promise/package.json</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/superagent-promise/test/browser_test.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/superagent-promise/test/component.json</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/superagent-promise/test/entrypoint.html</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/superagent-promise/test/fixture.txt</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/superagent-promise/test/index.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/superagent/.npmignore</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/superagent/.travis.yml</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/superagent/.zuul.yml</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/superagent/Contributing.md</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/superagent/History.md</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/superagent/LICENSE</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/superagent/Makefile</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/superagent/Readme.md</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/superagent/bower.json</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/superagent/component.json</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/superagent/docs/head.html</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/superagent/docs/highlight.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/superagent/docs/images/bg.png</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/superagent/docs/index.md</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/superagent/docs/jquery-ui.min.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/superagent/docs/jquery.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/superagent/docs/jquery.tocify.min.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/superagent/docs/style.css</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/superagent/docs/tail.html</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/superagent/docs/test.html</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/superagent/lib/client.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/superagent/lib/is-object.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/superagent/lib/node/agent.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/superagent/lib/node/index.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/superagent/lib/node/parsers/image.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/superagent/lib/node/parsers/index.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/superagent/lib/node/parsers/json.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/superagent/lib/node/parsers/text.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/superagent/lib/node/parsers/urlencoded.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/superagent/lib/node/part.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/superagent/lib/node/response.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/superagent/lib/node/utils.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/superagent/lib/request-base.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/superagent/lib/request.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/superagent/node_modules/debug/.coveralls.yml</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/superagent/node_modules/debug/.eslintrc</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/superagent/node_modules/debug/.npmignore</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/superagent/node_modules/debug/.travis.yml</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/superagent/node_modules/debug/CHANGELOG.md</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/superagent/node_modules/debug/LICENSE</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/superagent/node_modules/debug/Makefile</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/superagent/node_modules/debug/README.md</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/superagent/node_modules/debug/component.json</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/superagent/node_modules/debug/karma.conf.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/superagent/node_modules/debug/node.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/superagent/node_modules/debug/package.json</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/superagent/node_modules/debug/src/browser.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/superagent/node_modules/debug/src/debug.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/superagent/node_modules/debug/src/index.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/superagent/node_modules/debug/src/inspector-log.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/superagent/node_modules/debug/src/node.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/superagent/node_modules/isarray/README.md</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/superagent/node_modules/isarray/build/build.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/superagent/node_modules/isarray/component.json</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/superagent/node_modules/isarray/index.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/superagent/node_modules/isarray/package.json</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/superagent/node_modules/readable-stream/.npmignore</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/superagent/node_modules/readable-stream/LICENSE</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/superagent/node_modules/readable-stream/README.md</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/superagent/node_modules/readable-stream/duplex.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/superagent/node_modules/readable-stream/lib/_stream_duplex.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/superagent/node_modules/readable-stream/lib/_stream_passthrough.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/superagent/node_modules/readable-stream/lib/_stream_readable.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/superagent/node_modules/readable-stream/lib/_stream_transform.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/superagent/node_modules/readable-stream/lib/_stream_writable.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/superagent/node_modules/readable-stream/package.json</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/superagent/node_modules/readable-stream/passthrough.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/superagent/node_modules/readable-stream/readable.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/superagent/node_modules/readable-stream/transform.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/superagent/node_modules/readable-stream/writable.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/superagent/node_modules/string_decoder/.npmignore</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/superagent/node_modules/string_decoder/LICENSE</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/superagent/node_modules/string_decoder/README.md</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/superagent/node_modules/string_decoder/index.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/superagent/node_modules/string_decoder/package.json</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/superagent/package.json</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/superagent/superagent.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/superagent/yarn-error.log</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/superagent/yarn.lock</Path>
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/supports-color/browser.js</Path>
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/supports-color/index.js</Path>
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/supports-color/license</Path>
@@ -7775,6 +9183,16 @@
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/underscore/underscore-min.js</Path>
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/underscore/underscore-min.map</Path>
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/underscore/underscore.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/unique-slug/.npmignore</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/unique-slug/.travis.yml</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/unique-slug/README.md</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/unique-slug/index.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/unique-slug/package.json</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/unique-slug/test/index.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/universalify/LICENSE</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/universalify/README.md</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/universalify/index.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/universalify/package.json</Path>
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/unzip-response/index.js</Path>
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/unzip-response/license</Path>
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/unzip-response/package.json</Path>
@@ -7827,6 +9245,12 @@
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/wrappy/README.md</Path>
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/wrappy/package.json</Path>
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/wrappy/wrappy.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/xmlhttprequest/.jshintrc</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/xmlhttprequest/.npmignore</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/xmlhttprequest/LICENSE</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/xmlhttprequest/README.md</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/xmlhttprequest/lib/XMLHttpRequest.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/xmlhttprequest/package.json</Path>
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/xtend/.jshintrc</Path>
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/xtend/.npmignore</Path>
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/xtend/LICENCE</Path>
@@ -7935,6 +9359,9 @@
<Path fileType="data">/usr/share/boostnote/resources/app/resources/fonts/Lato-Regular.ttf</Path>
<Path fileType="data">/usr/share/boostnote/resources/app/resources/fonts/Lato-Regular.woff</Path>
<Path fileType="data">/usr/share/boostnote/resources/app/resources/fonts/Lato-Regular.woff2</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/resources/fonts/MaterialIcons-Regular.ttf</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/resources/fonts/MaterialIcons-Regular.woff</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/resources/fonts/MaterialIcons-Regular.woff2</Path>
<Path fileType="data">/usr/share/boostnote/resources/app/resources/icon/icon-all-active.svg</Path>
<Path fileType="data">/usr/share/boostnote/resources/app/resources/icon/icon-all.svg</Path>
<Path fileType="data">/usr/share/boostnote/resources/app/resources/icon/icon-code-off.svg</Path>
@@ -7986,10 +9413,13 @@
<Path fileType="data">/usr/share/boostnote/resources/app/tests/components/TagListItem.snapshot.test.js</Path>
<Path fileType="data">/usr/share/boostnote/resources/app/tests/components/__snapshots__/TagListItem.snapshot.test.js.snap</Path>
<Path fileType="data">/usr/share/boostnote/resources/app/tests/dataApi/addStorage.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/tests/dataApi/attachmentManagement.test.js</Path>
<Path fileType="data">/usr/share/boostnote/resources/app/tests/dataApi/createFolder-test.js</Path>
<Path fileType="data">/usr/share/boostnote/resources/app/tests/dataApi/createNote-test.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/tests/dataApi/createSnippet-test.js</Path>
<Path fileType="data">/usr/share/boostnote/resources/app/tests/dataApi/deleteFolder-test.js</Path>
<Path fileType="data">/usr/share/boostnote/resources/app/tests/dataApi/deleteNote-test.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/tests/dataApi/deleteSnippet-test.js</Path>
<Path fileType="data">/usr/share/boostnote/resources/app/tests/dataApi/exportFolder-test.js</Path>
<Path fileType="data">/usr/share/boostnote/resources/app/tests/dataApi/init.js</Path>
<Path fileType="data">/usr/share/boostnote/resources/app/tests/dataApi/migrateFromV6Storage-test.js</Path>
@@ -7997,8 +9427,10 @@
<Path fileType="data">/usr/share/boostnote/resources/app/tests/dataApi/removeStorage-test.js</Path>
<Path fileType="data">/usr/share/boostnote/resources/app/tests/dataApi/renameStorage-test.js</Path>
<Path fileType="data">/usr/share/boostnote/resources/app/tests/dataApi/reorderFolder-test.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/tests/dataApi/toggleStorage-test.js</Path>
<Path fileType="data">/usr/share/boostnote/resources/app/tests/dataApi/updateFolder-test.js</Path>
<Path fileType="data">/usr/share/boostnote/resources/app/tests/dataApi/updateNote-test.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/tests/dataApi/updateSnippet-test.js</Path>
<Path fileType="data">/usr/share/boostnote/resources/app/tests/date-formatter-test.js</Path>
<Path fileType="data">/usr/share/boostnote/resources/app/tests/fixtures/TestDummy.js</Path>
<Path fileType="data">/usr/share/boostnote/resources/app/tests/fixtures/markdowns.js</Path>
@@ -8008,12 +9440,14 @@
<Path fileType="data">/usr/share/boostnote/resources/app/tests/lib/boostnoterc/.boostnoterc.all</Path>
<Path fileType="data">/usr/share/boostnote/resources/app/tests/lib/boostnoterc/.boostnoterc.invalid</Path>
<Path fileType="data">/usr/share/boostnote/resources/app/tests/lib/boostnoterc/.boostnoterc.valid</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/tests/lib/escapeHtmlCharacters-test.js</Path>
<Path fileType="data">/usr/share/boostnote/resources/app/tests/lib/find-storage-test.js</Path>
<Path fileType="data">/usr/share/boostnote/resources/app/tests/lib/find-title-test.js</Path>
<Path fileType="data">/usr/share/boostnote/resources/app/tests/lib/get-todo-status-test.js</Path>
<Path fileType="data">/usr/share/boostnote/resources/app/tests/lib/html-text-helper-test.js</Path>
<Path fileType="data">/usr/share/boostnote/resources/app/tests/lib/markdown-test.js</Path>
<Path fileType="data">/usr/share/boostnote/resources/app/tests/lib/markdown-text-helper-test.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/tests/lib/normalize-editor-font-family-test.js</Path>
<Path fileType="data">/usr/share/boostnote/resources/app/tests/lib/rc-parser-test.js</Path>
<Path fileType="data">/usr/share/boostnote/resources/app/tests/lib/search-test.js</Path>
<Path fileType="data">/usr/share/boostnote/resources/app/tests/lib/snapshots/markdown-test.js.md</Path>
@@ -8028,12 +9462,12 @@
</Files>
</Package>
<History>
- <Update release="1">
- <Date>2018-06-20</Date>
- <Version>0.11.4</Version>
+ <Update release="2">
+ <Date>2018-07-19</Date>
+ <Version>0.11.8</Version>
<Comment>Packaging update</Comment>
<Name>Alec Scott</Name>
<Email>alecbcs@gmail.com</Email>
</Update>
</History>
</PISI>
\ No newline at end of file

File Metadata

Mime Type
text/plain
Expires
May 5 2023, 11:32 PM (13 w, 6 d ago)
Storage Engine
blob
Storage Format
Raw Data
Storage Handle
5789785
Default Alt Text
D3341.diff (265 KB)

Event Timeline