Page MenuHomeSolus

D4962.id12078.diff
No OneTemporary

D4962.id12078.diff

This file is larger than 256 KB, so syntax highlighting was skipped.
diff --git a/abi_used_libs b/abi_used_libs
--- a/abi_used_libs
+++ b/abi_used_libs
@@ -13,6 +13,7 @@
libXtst.so.6
libasound.so.2
libatk-1.0.so.0
+libatk-bridge-2.0.so.0
libc.so.6
libcairo.so.2
libcups.so.2
@@ -21,12 +22,10 @@
libexpat.so.1
libfontconfig.so.1
libgcc_s.so.1
-libgconf-2.so.4
libgdk-3.so.0
libgdk_pixbuf-2.0.so.0
libgio-2.0.so.0
libglib-2.0.so.0
-libgmodule-2.0.so.0
libgobject-2.0.so.0
libgtk-3.so.0
libm.so.6
@@ -38,5 +37,4 @@
libpthread.so.0
librt.so.1
libsmime3.so
-libstdc++.so.6
libxcb.so.1
diff --git a/files/markdown-fix.patch b/files/markdown-fix.patch
deleted file mode 100644
--- a/files/markdown-fix.patch
+++ /dev/null
@@ -1,12 +0,0 @@
-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,30 @@
+diff -ura a/browser/lib/newNote.js b/browser/lib/newNote.js
+--- a/browser/lib/newNote.js 2018-12-17 06:56:16.000000000 +0100
++++ b/browser/lib/newNote.js 2018-12-18 09:14:38.440189997 +0100
+@@ -1,11 +1,8 @@
+ import { hashHistory } from 'react-router'
+ import dataApi from 'browser/main/lib/dataApi'
+ import ee from 'browser/main/lib/eventEmitter'
+-import AwsMobileAnalyticsConfig from 'browser/main/lib/AwsMobileAnalyticsConfig'
+
+ export function createMarkdownNote (storage, folder, dispatch, location, params, config) {
+- AwsMobileAnalyticsConfig.recordDynamicCustomEvent('ADD_MARKDOWN')
+- AwsMobileAnalyticsConfig.recordDynamicCustomEvent('ADD_ALLNOTE')
+
+ let tags = []
+ if (config.ui.tagNewNoteWithFilteringTags && location.pathname.match(/\/tags/)) {
+@@ -37,8 +34,6 @@
+ }
+
+ export function createSnippetNote (storage, folder, dispatch, location, params, config) {
+- AwsMobileAnalyticsConfig.recordDynamicCustomEvent('ADD_SNIPPET')
+- AwsMobileAnalyticsConfig.recordDynamicCustomEvent('ADD_ALLNOTE')
+
+ let tags = []
+ if (config.ui.tagNewNoteWithFilteringTags && location.pathname.match(/\/tags/)) {
diff -ura a/browser/main/Detail/MarkdownNoteDetail.js b/browser/main/Detail/MarkdownNoteDetail.js
---- 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
+--- a/browser/main/Detail/MarkdownNoteDetail.js 2018-12-17 06:56:16.000000000 +0100
++++ b/browser/main/Detail/MarkdownNoteDetail.js 2018-12-18 09:15:07.053824657 +0100
@@ -15,7 +15,6 @@
import StatusBar from '../StatusBar'
import _ from 'lodash'
@@ -9,25 +33,25 @@
import ConfigManager from 'browser/main/lib/ConfigManager'
import TrashButton from './TrashButton'
import FullscreenButton from './FullscreenButton'
-@@ -117,7 +116,6 @@
+@@ -124,7 +123,6 @@
type: 'UPDATE_NOTE',
note: note
})
- AwsMobileAnalyticsConfig.recordDynamicCustomEvent('EDIT_NOTE')
})
}
-
-@@ -156,7 +154,6 @@
-
+
+@@ -163,7 +161,6 @@
+
handleStarButtonClick (e) {
const { note } = this.state
- if (!note.isStarred) AwsMobileAnalyticsConfig.recordDynamicCustomEvent('ADD_STAR')
-
+
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-07-19 08:21:35.000000000 +0200
-+++ b/browser/main/Detail/SnippetNoteDetail.js 2018-07-19 12:14:00.360531159 +0200
+--- a/browser/main/Detail/SnippetNoteDetail.js 2018-12-17 06:56:16.000000000 +0100
++++ b/browser/main/Detail/SnippetNoteDetail.js 2018-12-18 09:15:46.964251990 +0100
@@ -19,7 +19,6 @@
import _ from 'lodash'
import {findNoteTitle} from 'browser/lib/findNoteTitle'
@@ -36,23 +60,23 @@
import TrashButton from './TrashButton'
import RestoreButton from './RestoreButton'
import PermanentDeleteButton from './PermanentDeleteButton'
-@@ -127,7 +126,6 @@
+@@ -140,7 +139,6 @@
type: 'UPDATE_NOTE',
note: note
})
- AwsMobileAnalyticsConfig.recordDynamicCustomEvent('EDIT_NOTE')
})
}
-
-@@ -166,7 +164,6 @@
-
+
+@@ -179,7 +177,6 @@
+
handleStarButtonClick (e) {
const { note } = this.state
- if (!note.isStarred) AwsMobileAnalyticsConfig.recordDynamicCustomEvent('ADD_STAR')
-
+
note.isStarred = !note.isStarred
-
-@@ -364,9 +361,6 @@
+
+@@ -375,9 +372,6 @@
const mode = syntax != null ? syntax.name : null
if (mode != null) {
snippets[index].mode = mode
@@ -61,8 +85,8 @@
- })
}
this.setState(state => ({note: Object.assign(state.note, {snippets: snippets})}))
-
-@@ -388,10 +382,6 @@
+
+@@ -399,10 +393,6 @@
}), () => {
this.save()
})
@@ -72,29 +96,29 @@
- })
}
}
-
+
diff -ura a/browser/main/Detail/TagSelect.js b/browser/main/Detail/TagSelect.js
---- 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
+--- a/browser/main/Detail/TagSelect.js 2018-12-17 06:56:16.000000000 +0100
++++ b/browser/main/Detail/TagSelect.js 2018-12-18 09:16:00.454354015 +0100
@@ -3,7 +3,6 @@
import CSSModules from 'browser/lib/CSSModules'
import styles from './TagSelect.styl'
import _ from 'lodash'
-import AwsMobileAnalyticsConfig from 'browser/main/lib/AwsMobileAnalyticsConfig'
import i18n from 'browser/lib/i18n'
-
- class TagSelect extends React.Component {
-@@ -56,7 +55,6 @@
+ import ee from 'browser/main/lib/eventEmitter'
+ import Autosuggest from 'react-autosuggest'
+@@ -27,7 +26,6 @@
}
-
- submitTag () {
+
+ addNewTag (newTag) {
- AwsMobileAnalyticsConfig.recordDynamicCustomEvent('ADD_TAG')
- let { value } = this.props
- let newTag = this.refs.newTag.value.trim().replace(/ +/g, '_')
- newTag = newTag.charAt(0) === '#' ? newTag.substring(1) : newTag
+
+ newTag = newTag.trim().replace(/ +/g, '_')
+ if (newTag.charAt(0) === '#') {
diff -ura a/browser/main/Main.js b/browser/main/Main.js
---- 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
+--- a/browser/main/Main.js 2018-12-17 06:56:16.000000000 +0100
++++ b/browser/main/Main.js 2018-12-18 09:16:21.980893940 +0100
@@ -10,7 +10,6 @@
import dataApi from 'browser/main/lib/dataApi'
import _ from 'lodash'
@@ -103,68 +127,39 @@
import eventEmitter from 'browser/main/lib/eventEmitter'
import { hashHistory } from 'react-router'
import store from 'browser/main/store'
-@@ -26,10 +25,6 @@
+@@ -25,10 +24,6 @@
constructor (props) {
super(props)
-
+
- if (process.env.NODE_ENV === 'production') {
- mobileAnalytics.initAwsMobileAnalytics()
- }
-
const { config } = props
-
+
this.state = {
diff -ura a/browser/main/modals/CreateFolderModal.js b/browser/main/modals/CreateFolderModal.js
---- 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
+--- a/browser/main/modals/CreateFolderModal.js 2018-12-17 06:56:16.000000000 +0100
++++ b/browser/main/modals/CreateFolderModal.js 2018-12-18 09:16:35.717493677 +0100
@@ -6,7 +6,6 @@
import store from 'browser/main/store'
import consts from 'browser/lib/consts'
import ModalEscButton from 'browser/components/ModalEscButton'
-import AwsMobileAnalyticsConfig from 'browser/main/lib/AwsMobileAnalyticsConfig'
import i18n from 'browser/lib/i18n'
-
+
class CreateFolderModal extends React.Component {
@@ -51,7 +50,6 @@
}
-
+
confirm () {
- AwsMobileAnalyticsConfig.recordDynamicCustomEvent('ADD_FOLDER')
if (this.state.name.trim().length > 0) {
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-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'
- import ModalEscButton from 'browser/components/ModalEscButton'
--import AwsMobileAnalyticsConfig from 'browser/main/lib/AwsMobileAnalyticsConfig'
- import i18n from 'browser/lib/i18n'
-
- class NewNoteModal extends React.Component {
-@@ -24,8 +23,6 @@
- }
-
- handleMarkdownNoteButtonClick (e) {
-- AwsMobileAnalyticsConfig.recordDynamicCustomEvent('ADD_MARKDOWN')
-- AwsMobileAnalyticsConfig.recordDynamicCustomEvent('ADD_ALLNOTE')
- const { storage, folder, dispatch, location } = this.props
- dataApi
- .createNote(storage, {
-@@ -59,8 +56,6 @@
- }
-
- handleSnippetNoteButtonClick (e) {
-- AwsMobileAnalyticsConfig.recordDynamicCustomEvent('ADD_SNIPPET')
-- AwsMobileAnalyticsConfig.recordDynamicCustomEvent('ADD_ALLNOTE')
- const { storage, folder, dispatch, location } = this.props
-
- 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-07-19 08:21:35.000000000 +0200
-+++ b/browser/main/modals/PreferencesModal/InfoTab.js 2018-07-19 12:15:47.909689742 +0200
+--- a/browser/main/modals/PreferencesModal/InfoTab.js 2018-12-17 06:56:16.000000000 +0100
++++ b/browser/main/modals/PreferencesModal/InfoTab.js 2018-12-18 09:17:14.424024793 +0100
@@ -3,7 +3,6 @@
import styles from './InfoTab.styl'
import ConfigManager from 'browser/main/lib/ConfigManager'
@@ -172,11 +167,11 @@
-import AwsMobileAnalyticsConfig from 'browser/main/lib/AwsMobileAnalyticsConfig'
import _ from 'lodash'
import i18n from 'browser/lib/i18n'
-
+
@@ -25,47 +24,6 @@
e.preventDefault()
}
-
+
- handleConfigChange (e) {
- const newConfig = { amaEnabled: this.refs.amaEnabled.checked }
-
@@ -246,8 +241,8 @@
)
}
diff -ura a/browser/main/NoteList/index.js b/browser/main/NoteList/index.js
---- 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
+--- a/browser/main/NoteList/index.js 2018-12-17 06:56:16.000000000 +0100
++++ b/browser/main/NoteList/index.js 2018-12-18 09:17:36.037313386 +0100
@@ -17,7 +17,6 @@
import path from 'path'
import { hashHistory } from 'react-router'
@@ -256,26 +251,26 @@
import Markdown from '../../lib/markdown'
import i18n from 'browser/lib/i18n'
import { confirmDeleteNote } from 'browser/lib/confirmDeleteNote'
-@@ -633,7 +632,6 @@
+@@ -686,7 +685,6 @@
note: newNote
})
})
- AwsMobileAnalyticsConfig.recordDynamicCustomEvent('EDIT_NOTE')
- console.log('Notes went to trash')
})
.catch((err) => {
-@@ -652,8 +650,6 @@
+ console.error('Notes could not go to trash: ' + err)
+@@ -704,8 +702,6 @@
const firstNote = selectedNotes[0]
const eventName = firstNote.type === 'MARKDOWN_NOTE' ? 'ADD_MARKDOWN' : 'ADD_SNIPPET'
-
+
- AwsMobileAnalyticsConfig.recordDynamicCustomEvent(eventName)
- AwsMobileAnalyticsConfig.recordDynamicCustomEvent('ADD_ALLNOTE')
dataApi
.createNote(storage.key, {
type: firstNote.type,
diff -ura a/package.json b/package.json
---- a/package.json 2018-07-19 08:21:35.000000000 +0200
-+++ b/package.json 2018-07-19 12:16:38.697563991 +0200
+--- a/package.json 2018-12-17 06:56:16.000000000 +0100
++++ b/package.json 2018-12-18 09:17:47.943964022 +0100
@@ -52,8 +52,6 @@
"@rokt33r/markdown-it-math": "^4.0.1",
"@rokt33r/season": "^5.3.0",
@@ -283,5 +278,5 @@
- "aws-sdk": "^2.48.0",
- "aws-sdk-mobile-analytics": "^0.9.2",
"chart.js": "^2.7.2",
- "codemirror": "^5.39.0",
+ "codemirror": "^5.40.2",
"codemirror-mode-elixir": "^1.1.1",
diff --git a/package.yml b/package.yml
--- a/package.yml
+++ b/package.yml
@@ -1,8 +1,8 @@
name : boostnote
-version : 0.11.8
-release : 3
+version : 0.11.12
+release : 4
source :
- - https://github.com/BoostIO/Boostnote/archive/v0.11.8.tar.gz : faca88c7daabd550983bc18496aebc3af3f1ad558a17045c780f6c3fa63ccc7f
+ - https://github.com/BoostIO/Boostnote/archive/v0.11.12.tar.gz : e329d2afe67f7e3d0b8da31b903c4c28a1f61118424692bcfd4354a414b8c9d9
license : GPL-3.0-or-later
component : office.notes
networking : yes
@@ -29,8 +29,7 @@
- nodejs
setup : |
%patch -p1 < $pkgfiles/remove-analytics.patch
- %patch -p1 < $pkgfiles/markdown-fix.patch
-
+
mkdir -p grunt-install
npm install --prefix grunt-install grunt-cli
build : |
@@ -43,5 +42,5 @@
install -dm00755 $installdir/usr/bin
ln -s /usr/share/boostnote/Boostnote $installdir/usr/bin/boostnote
- install -D -m00644 resources/app.png $installdir/usr/share/pixmaps/boostnote.png
- install -D -m00644 $pkgfiles/boostnote.desktop $installdir/usr/share/applications/boostnote.desktop
+ install -Dm00644 resources/app.png $installdir/usr/share/pixmaps/boostnote.png
+ install -Dm00644 $pkgfiles/boostnote.desktop $installdir/usr/share/applications/boostnote.desktop
diff --git a/pspec_x86_64.xml b/pspec_x86_64.xml
--- a/pspec_x86_64.xml
+++ b/pspec_x86_64.xml
@@ -2,8 +2,8 @@
<Source>
<Name>boostnote</Name>
<Packager>
- <Name>Pierre-Yves</Name>
- <Email>pyu@riseup.net</Email>
+ <Name>F. von Gellhorn</Name>
+ <Email>flinux@vongellhorn.ch</Email>
</Packager>
<License>GPL-3.0-or-later</License>
<PartOf>office.notes</PartOf>
@@ -85,19 +85,32 @@
<Path fileType="data">/usr/share/boostnote/locales/zh-CN.pak</Path>
<Path fileType="data">/usr/share/boostnote/locales/zh-TW.pak</Path>
<Path fileType="data">/usr/share/boostnote/natives_blob.bin</Path>
- <Path fileType="data">/usr/share/boostnote/pdf_viewer_resources.pak</Path>
<Path fileType="data">/usr/share/boostnote/resources/app/.boostnoterc.sample</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/.editorconfig</Path>
<Path fileType="data">/usr/share/boostnote/resources/app/.eslintignore</Path>
<Path fileType="data">/usr/share/boostnote/resources/app/.eslintrc</Path>
<Path fileType="data">/usr/share/boostnote/resources/app/.snapcraft/travis_snapcraft.cfg</Path>
<Path fileType="data">/usr/share/boostnote/resources/app/.travis.yml</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/.vscode/launch.json</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/.vscode/tasks.json</Path>
<Path fileType="data">/usr/share/boostnote/resources/app/Backers.md</Path>
<Path fileType="data">/usr/share/boostnote/resources/app/ISSUE_TEMPLATE.md</Path>
<Path fileType="data">/usr/share/boostnote/resources/app/LICENSE</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/PULL_REQUEST_TEMPLATE.md</Path>
<Path fileType="data">/usr/share/boostnote/resources/app/__mocks__/electron.js</Path>
<Path fileType="data">/usr/share/boostnote/resources/app/compiled/main.js</Path>
<Path fileType="data">/usr/share/boostnote/resources/app/contributing.md</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/dev-scripts/dev.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/dictionaries/de_DE/LICENSE</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/dictionaries/de_DE/de_DE.aff</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/dictionaries/de_DE/de_DE.dic</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/dictionaries/en_GB/LICENSE</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/dictionaries/en_GB/en_GB.aff</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/dictionaries/en_GB/en_GB.dic</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/dictionaries/fr_FR/fr_FR.aff</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/dictionaries/fr_FR/fr_FR.dic</Path>
<Path fileType="data">/usr/share/boostnote/resources/app/docs/build.md</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/docs/code_style.md</Path>
<Path fileType="data">/usr/share/boostnote/resources/app/docs/de/build.md</Path>
<Path fileType="data">/usr/share/boostnote/resources/app/docs/de/debug.md</Path>
<Path fileType="data">/usr/share/boostnote/resources/app/docs/debug.md</Path>
@@ -113,44 +126,268 @@
<Path fileType="data">/usr/share/boostnote/resources/app/docs/zh_CN/debug.md</Path>
<Path fileType="data">/usr/share/boostnote/resources/app/docs/zh_TW/build.md</Path>
<Path fileType="data">/usr/share/boostnote/resources/app/extra_scripts/boost/boostNewLineIndentContinueMarkdownList.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/grunt-install/etc</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/extra_scripts/codemirror/addon/hyperlink/hyperlink.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/extra_scripts/codemirror/mode/bfm/bfm.css</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/extra_scripts/codemirror/mode/bfm/bfm.js</Path>
<Path fileType="data">/usr/share/boostnote/resources/app/grunt-install/node_modules/abbrev/LICENSE</Path>
<Path fileType="data">/usr/share/boostnote/resources/app/grunt-install/node_modules/abbrev/README.md</Path>
<Path fileType="data">/usr/share/boostnote/resources/app/grunt-install/node_modules/abbrev/abbrev.js</Path>
<Path fileType="data">/usr/share/boostnote/resources/app/grunt-install/node_modules/abbrev/package.json</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/grunt-install/node_modules/balanced-match/.npmignore</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/grunt-install/node_modules/balanced-match/LICENSE.md</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/grunt-install/node_modules/balanced-match/README.md</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/grunt-install/node_modules/balanced-match/index.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/grunt-install/node_modules/balanced-match/package.json</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/grunt-install/node_modules/brace-expansion/LICENSE</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/grunt-install/node_modules/brace-expansion/README.md</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/grunt-install/node_modules/brace-expansion/index.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/grunt-install/node_modules/brace-expansion/package.json</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/grunt-install/node_modules/concat-map/.travis.yml</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/grunt-install/node_modules/concat-map/LICENSE</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/grunt-install/node_modules/concat-map/README.markdown</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/grunt-install/node_modules/concat-map/example/map.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/grunt-install/node_modules/concat-map/index.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/grunt-install/node_modules/concat-map/package.json</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/grunt-install/node_modules/concat-map/test/map.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/grunt-install/node_modules/findup-sync/.npmignore</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/grunt-install/node_modules/findup-sync/LICENSE-MIT</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/grunt-install/node_modules/arr-diff/LICENSE</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/grunt-install/node_modules/arr-diff/README.md</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/grunt-install/node_modules/arr-diff/index.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/grunt-install/node_modules/arr-diff/package.json</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/grunt-install/node_modules/arr-flatten/LICENSE</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/grunt-install/node_modules/arr-flatten/README.md</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/grunt-install/node_modules/arr-flatten/index.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/grunt-install/node_modules/arr-flatten/package.json</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/grunt-install/node_modules/arr-union/LICENSE</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/grunt-install/node_modules/arr-union/README.md</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/grunt-install/node_modules/arr-union/index.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/grunt-install/node_modules/arr-union/package.json</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/grunt-install/node_modules/array-each/LICENSE</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/grunt-install/node_modules/array-each/README.md</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/grunt-install/node_modules/array-each/index.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/grunt-install/node_modules/array-each/package.json</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/grunt-install/node_modules/array-slice/LICENSE</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/grunt-install/node_modules/array-slice/README.md</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/grunt-install/node_modules/array-slice/index.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/grunt-install/node_modules/array-slice/package.json</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/grunt-install/node_modules/array-unique/LICENSE</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/grunt-install/node_modules/array-unique/README.md</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/grunt-install/node_modules/array-unique/index.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/grunt-install/node_modules/array-unique/package.json</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/grunt-install/node_modules/assign-symbols/LICENSE</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/grunt-install/node_modules/assign-symbols/README.md</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/grunt-install/node_modules/assign-symbols/index.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/grunt-install/node_modules/assign-symbols/package.json</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/grunt-install/node_modules/atob/LICENSE</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/grunt-install/node_modules/atob/LICENSE.DOCS</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/grunt-install/node_modules/atob/README.md</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/grunt-install/node_modules/atob/bin/atob.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/grunt-install/node_modules/atob/bower.json</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/grunt-install/node_modules/atob/browser-atob.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/grunt-install/node_modules/atob/node-atob.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/grunt-install/node_modules/atob/package.json</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/grunt-install/node_modules/atob/test.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/grunt-install/node_modules/base/LICENSE</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/grunt-install/node_modules/base/README.md</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/grunt-install/node_modules/base/index.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/grunt-install/node_modules/base/node_modules/define-property/LICENSE</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/grunt-install/node_modules/base/node_modules/define-property/README.md</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/grunt-install/node_modules/base/node_modules/define-property/index.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/grunt-install/node_modules/base/node_modules/define-property/package.json</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/grunt-install/node_modules/base/node_modules/is-accessor-descriptor/LICENSE</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/grunt-install/node_modules/base/node_modules/is-accessor-descriptor/README.md</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/grunt-install/node_modules/base/node_modules/is-accessor-descriptor/index.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/grunt-install/node_modules/base/node_modules/is-accessor-descriptor/package.json</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/grunt-install/node_modules/base/node_modules/is-data-descriptor/LICENSE</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/grunt-install/node_modules/base/node_modules/is-data-descriptor/README.md</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/grunt-install/node_modules/base/node_modules/is-data-descriptor/index.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/grunt-install/node_modules/base/node_modules/is-data-descriptor/package.json</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/grunt-install/node_modules/base/node_modules/is-descriptor/LICENSE</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/grunt-install/node_modules/base/node_modules/is-descriptor/README.md</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/grunt-install/node_modules/base/node_modules/is-descriptor/index.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/grunt-install/node_modules/base/node_modules/is-descriptor/package.json</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/grunt-install/node_modules/base/package.json</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/grunt-install/node_modules/braces/LICENSE</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/grunt-install/node_modules/braces/README.md</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/grunt-install/node_modules/braces/index.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/grunt-install/node_modules/braces/lib/braces.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/grunt-install/node_modules/braces/lib/compilers.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/grunt-install/node_modules/braces/lib/parsers.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/grunt-install/node_modules/braces/lib/utils.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/grunt-install/node_modules/braces/node_modules/extend-shallow/LICENSE</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/grunt-install/node_modules/braces/node_modules/extend-shallow/README.md</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/grunt-install/node_modules/braces/node_modules/extend-shallow/index.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/grunt-install/node_modules/braces/node_modules/extend-shallow/package.json</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/grunt-install/node_modules/braces/package.json</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/grunt-install/node_modules/cache-base/LICENSE</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/grunt-install/node_modules/cache-base/README.md</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/grunt-install/node_modules/cache-base/index.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/grunt-install/node_modules/cache-base/package.json</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/grunt-install/node_modules/class-utils/LICENSE</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/grunt-install/node_modules/class-utils/README.md</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/grunt-install/node_modules/class-utils/index.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/grunt-install/node_modules/class-utils/node_modules/define-property/LICENSE</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/grunt-install/node_modules/class-utils/node_modules/define-property/README.md</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/grunt-install/node_modules/class-utils/node_modules/define-property/index.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/grunt-install/node_modules/class-utils/node_modules/define-property/package.json</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/grunt-install/node_modules/class-utils/package.json</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/grunt-install/node_modules/collection-visit/LICENSE</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/grunt-install/node_modules/collection-visit/README.md</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/grunt-install/node_modules/collection-visit/index.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/grunt-install/node_modules/collection-visit/package.json</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/grunt-install/node_modules/component-emitter/History.md</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/grunt-install/node_modules/component-emitter/LICENSE</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/grunt-install/node_modules/component-emitter/Readme.md</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/grunt-install/node_modules/component-emitter/index.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/grunt-install/node_modules/component-emitter/package.json</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/grunt-install/node_modules/copy-descriptor/LICENSE</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/grunt-install/node_modules/copy-descriptor/index.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/grunt-install/node_modules/copy-descriptor/package.json</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/grunt-install/node_modules/debug/.coveralls.yml</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/grunt-install/node_modules/debug/.eslintrc</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/grunt-install/node_modules/debug/.npmignore</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/grunt-install/node_modules/debug/.travis.yml</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/grunt-install/node_modules/debug/CHANGELOG.md</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/grunt-install/node_modules/debug/LICENSE</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/grunt-install/node_modules/debug/Makefile</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/grunt-install/node_modules/debug/README.md</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/grunt-install/node_modules/debug/component.json</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/grunt-install/node_modules/debug/karma.conf.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/grunt-install/node_modules/debug/node.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/grunt-install/node_modules/debug/package.json</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/grunt-install/node_modules/debug/src/browser.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/grunt-install/node_modules/debug/src/debug.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/grunt-install/node_modules/debug/src/index.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/grunt-install/node_modules/debug/src/inspector-log.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/grunt-install/node_modules/debug/src/node.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/grunt-install/node_modules/decode-uri-component/index.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/grunt-install/node_modules/decode-uri-component/license</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/grunt-install/node_modules/decode-uri-component/package.json</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/grunt-install/node_modules/decode-uri-component/readme.md</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/grunt-install/node_modules/define-property/CHANGELOG.md</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/grunt-install/node_modules/define-property/LICENSE</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/grunt-install/node_modules/define-property/README.md</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/grunt-install/node_modules/define-property/index.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/grunt-install/node_modules/define-property/node_modules/is-accessor-descriptor/LICENSE</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/grunt-install/node_modules/define-property/node_modules/is-accessor-descriptor/README.md</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/grunt-install/node_modules/define-property/node_modules/is-accessor-descriptor/index.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/grunt-install/node_modules/define-property/node_modules/is-accessor-descriptor/package.json</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/grunt-install/node_modules/define-property/node_modules/is-data-descriptor/LICENSE</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/grunt-install/node_modules/define-property/node_modules/is-data-descriptor/README.md</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/grunt-install/node_modules/define-property/node_modules/is-data-descriptor/index.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/grunt-install/node_modules/define-property/node_modules/is-data-descriptor/package.json</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/grunt-install/node_modules/define-property/node_modules/is-descriptor/LICENSE</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/grunt-install/node_modules/define-property/node_modules/is-descriptor/README.md</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/grunt-install/node_modules/define-property/node_modules/is-descriptor/index.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/grunt-install/node_modules/define-property/node_modules/is-descriptor/package.json</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/grunt-install/node_modules/define-property/package.json</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/grunt-install/node_modules/detect-file/LICENSE</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/grunt-install/node_modules/detect-file/README.md</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/grunt-install/node_modules/detect-file/index.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/grunt-install/node_modules/detect-file/package.json</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/grunt-install/node_modules/expand-brackets/LICENSE</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/grunt-install/node_modules/expand-brackets/README.md</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/grunt-install/node_modules/expand-brackets/changelog.md</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/grunt-install/node_modules/expand-brackets/index.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/grunt-install/node_modules/expand-brackets/lib/compilers.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/grunt-install/node_modules/expand-brackets/lib/parsers.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/grunt-install/node_modules/expand-brackets/lib/utils.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/grunt-install/node_modules/expand-brackets/node_modules/define-property/LICENSE</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/grunt-install/node_modules/expand-brackets/node_modules/define-property/README.md</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/grunt-install/node_modules/expand-brackets/node_modules/define-property/index.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/grunt-install/node_modules/expand-brackets/node_modules/define-property/package.json</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/grunt-install/node_modules/expand-brackets/node_modules/extend-shallow/LICENSE</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/grunt-install/node_modules/expand-brackets/node_modules/extend-shallow/README.md</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/grunt-install/node_modules/expand-brackets/node_modules/extend-shallow/index.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/grunt-install/node_modules/expand-brackets/node_modules/extend-shallow/package.json</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/grunt-install/node_modules/expand-brackets/package.json</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/grunt-install/node_modules/expand-tilde/LICENSE</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/grunt-install/node_modules/expand-tilde/README.md</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/grunt-install/node_modules/expand-tilde/index.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/grunt-install/node_modules/expand-tilde/package.json</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/grunt-install/node_modules/extend-shallow/LICENSE</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/grunt-install/node_modules/extend-shallow/README.md</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/grunt-install/node_modules/extend-shallow/index.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/grunt-install/node_modules/extend-shallow/node_modules/is-extendable/LICENSE</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/grunt-install/node_modules/extend-shallow/node_modules/is-extendable/README.md</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/grunt-install/node_modules/extend-shallow/node_modules/is-extendable/index.d.ts</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/grunt-install/node_modules/extend-shallow/node_modules/is-extendable/index.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/grunt-install/node_modules/extend-shallow/node_modules/is-extendable/package.json</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/grunt-install/node_modules/extend-shallow/package.json</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/grunt-install/node_modules/extend/.editorconfig</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/grunt-install/node_modules/extend/.eslintrc</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/grunt-install/node_modules/extend/.jscs.json</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/grunt-install/node_modules/extend/.travis.yml</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/grunt-install/node_modules/extend/CHANGELOG.md</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/grunt-install/node_modules/extend/LICENSE</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/grunt-install/node_modules/extend/README.md</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/grunt-install/node_modules/extend/component.json</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/grunt-install/node_modules/extend/index.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/grunt-install/node_modules/extend/package.json</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/grunt-install/node_modules/extglob/LICENSE</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/grunt-install/node_modules/extglob/README.md</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/grunt-install/node_modules/extglob/changelog.md</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/grunt-install/node_modules/extglob/index.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/grunt-install/node_modules/extglob/lib/.DS_Store</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/grunt-install/node_modules/extglob/lib/compilers.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/grunt-install/node_modules/extglob/lib/extglob.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/grunt-install/node_modules/extglob/lib/parsers.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/grunt-install/node_modules/extglob/lib/utils.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/grunt-install/node_modules/extglob/node_modules/define-property/LICENSE</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/grunt-install/node_modules/extglob/node_modules/define-property/README.md</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/grunt-install/node_modules/extglob/node_modules/define-property/index.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/grunt-install/node_modules/extglob/node_modules/define-property/package.json</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/grunt-install/node_modules/extglob/node_modules/extend-shallow/LICENSE</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/grunt-install/node_modules/extglob/node_modules/extend-shallow/README.md</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/grunt-install/node_modules/extglob/node_modules/extend-shallow/index.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/grunt-install/node_modules/extglob/node_modules/extend-shallow/package.json</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/grunt-install/node_modules/extglob/node_modules/is-accessor-descriptor/LICENSE</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/grunt-install/node_modules/extglob/node_modules/is-accessor-descriptor/README.md</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/grunt-install/node_modules/extglob/node_modules/is-accessor-descriptor/index.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/grunt-install/node_modules/extglob/node_modules/is-accessor-descriptor/package.json</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/grunt-install/node_modules/extglob/node_modules/is-data-descriptor/LICENSE</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/grunt-install/node_modules/extglob/node_modules/is-data-descriptor/README.md</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/grunt-install/node_modules/extglob/node_modules/is-data-descriptor/index.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/grunt-install/node_modules/extglob/node_modules/is-data-descriptor/package.json</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/grunt-install/node_modules/extglob/node_modules/is-descriptor/LICENSE</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/grunt-install/node_modules/extglob/node_modules/is-descriptor/README.md</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/grunt-install/node_modules/extglob/node_modules/is-descriptor/index.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/grunt-install/node_modules/extglob/node_modules/is-descriptor/package.json</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/grunt-install/node_modules/extglob/package.json</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/grunt-install/node_modules/fill-range/LICENSE</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/grunt-install/node_modules/fill-range/README.md</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/grunt-install/node_modules/fill-range/index.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/grunt-install/node_modules/fill-range/node_modules/extend-shallow/LICENSE</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/grunt-install/node_modules/fill-range/node_modules/extend-shallow/README.md</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/grunt-install/node_modules/fill-range/node_modules/extend-shallow/index.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/grunt-install/node_modules/fill-range/node_modules/extend-shallow/package.json</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/grunt-install/node_modules/fill-range/package.json</Path>
<Path fileType="data">/usr/share/boostnote/resources/app/grunt-install/node_modules/findup-sync/README.md</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/grunt-install/node_modules/findup-sync/lib/findup-sync.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/grunt-install/node_modules/findup-sync/index.js</Path>
<Path fileType="data">/usr/share/boostnote/resources/app/grunt-install/node_modules/findup-sync/package.json</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/grunt-install/node_modules/glob/LICENSE</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/grunt-install/node_modules/glob/README.md</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/grunt-install/node_modules/glob/common.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/grunt-install/node_modules/glob/glob.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/grunt-install/node_modules/glob/package.json</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/grunt-install/node_modules/glob/sync.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/grunt-install/node_modules/fined/LICENSE</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/grunt-install/node_modules/fined/README.md</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/grunt-install/node_modules/fined/index.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/grunt-install/node_modules/fined/package.json</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/grunt-install/node_modules/flagged-respawn/LICENSE</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/grunt-install/node_modules/flagged-respawn/README.md</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/grunt-install/node_modules/flagged-respawn/index.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/grunt-install/node_modules/flagged-respawn/lib/is-v8flags.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/grunt-install/node_modules/flagged-respawn/lib/remover.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/grunt-install/node_modules/flagged-respawn/lib/reorder.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/grunt-install/node_modules/flagged-respawn/lib/respawn.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/grunt-install/node_modules/flagged-respawn/package.json</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/grunt-install/node_modules/for-in/LICENSE</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/grunt-install/node_modules/for-in/README.md</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/grunt-install/node_modules/for-in/index.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/grunt-install/node_modules/for-in/package.json</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/grunt-install/node_modules/for-own/LICENSE</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/grunt-install/node_modules/for-own/README.md</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/grunt-install/node_modules/for-own/index.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/grunt-install/node_modules/for-own/package.json</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/grunt-install/node_modules/fragment-cache/LICENSE</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/grunt-install/node_modules/fragment-cache/README.md</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/grunt-install/node_modules/fragment-cache/index.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/grunt-install/node_modules/fragment-cache/package.json</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/grunt-install/node_modules/get-value/LICENSE</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/grunt-install/node_modules/get-value/index.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/grunt-install/node_modules/get-value/package.json</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/grunt-install/node_modules/global-modules/LICENSE</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/grunt-install/node_modules/global-modules/README.md</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/grunt-install/node_modules/global-modules/index.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/grunt-install/node_modules/global-modules/package.json</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/grunt-install/node_modules/global-prefix/LICENSE</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/grunt-install/node_modules/global-prefix/README.md</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/grunt-install/node_modules/global-prefix/index.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/grunt-install/node_modules/global-prefix/package.json</Path>
<Path fileType="data">/usr/share/boostnote/resources/app/grunt-install/node_modules/grunt-cli/CHANGELOG.md</Path>
<Path fileType="data">/usr/share/boostnote/resources/app/grunt-install/node_modules/grunt-cli/README.md</Path>
<Path fileType="data">/usr/share/boostnote/resources/app/grunt-install/node_modules/grunt-cli/bin/grunt</Path>
<Path fileType="data">/usr/share/boostnote/resources/app/grunt-install/node_modules/grunt-cli/completion/bash</Path>
<Path fileType="data">/usr/share/boostnote/resources/app/grunt-install/node_modules/grunt-cli/completion/zsh</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/grunt-install/node_modules/grunt-cli/lib/cli.js</Path>
<Path fileType="data">/usr/share/boostnote/resources/app/grunt-install/node_modules/grunt-cli/lib/completion.js</Path>
<Path fileType="data">/usr/share/boostnote/resources/app/grunt-install/node_modules/grunt-cli/lib/info.js</Path>
<Path fileType="data">/usr/share/boostnote/resources/app/grunt-install/node_modules/grunt-cli/package.json</Path>
@@ -158,21 +395,187 @@
<Path fileType="data">/usr/share/boostnote/resources/app/grunt-install/node_modules/grunt-known-options/README.md</Path>
<Path fileType="data">/usr/share/boostnote/resources/app/grunt-install/node_modules/grunt-known-options/index.js</Path>
<Path fileType="data">/usr/share/boostnote/resources/app/grunt-install/node_modules/grunt-known-options/package.json</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/grunt-install/node_modules/inflight/LICENSE</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/grunt-install/node_modules/inflight/README.md</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/grunt-install/node_modules/inflight/inflight.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/grunt-install/node_modules/inflight/package.json</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/grunt-install/node_modules/inherits/LICENSE</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/grunt-install/node_modules/inherits/README.md</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/grunt-install/node_modules/inherits/inherits.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/grunt-install/node_modules/inherits/inherits_browser.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/grunt-install/node_modules/inherits/package.json</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/grunt-install/node_modules/minimatch/LICENSE</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/grunt-install/node_modules/minimatch/README.md</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/grunt-install/node_modules/minimatch/minimatch.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/grunt-install/node_modules/minimatch/package.json</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/grunt-install/node_modules/has-value/LICENSE</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/grunt-install/node_modules/has-value/README.md</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/grunt-install/node_modules/has-value/index.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/grunt-install/node_modules/has-value/package.json</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/grunt-install/node_modules/has-values/LICENSE</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/grunt-install/node_modules/has-values/README.md</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/grunt-install/node_modules/has-values/index.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/grunt-install/node_modules/has-values/node_modules/kind-of/LICENSE</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/grunt-install/node_modules/has-values/node_modules/kind-of/README.md</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/grunt-install/node_modules/has-values/node_modules/kind-of/index.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/grunt-install/node_modules/has-values/node_modules/kind-of/package.json</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/grunt-install/node_modules/has-values/package.json</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/grunt-install/node_modules/homedir-polyfill/LICENSE</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/grunt-install/node_modules/homedir-polyfill/README.md</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/grunt-install/node_modules/homedir-polyfill/index.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/grunt-install/node_modules/homedir-polyfill/package.json</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/grunt-install/node_modules/ini/LICENSE</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/grunt-install/node_modules/ini/README.md</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/grunt-install/node_modules/ini/ini.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/grunt-install/node_modules/ini/package.json</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/grunt-install/node_modules/interpret/CHANGELOG</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/grunt-install/node_modules/interpret/LICENSE</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/grunt-install/node_modules/interpret/README.md</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/grunt-install/node_modules/interpret/index.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/grunt-install/node_modules/interpret/package.json</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/grunt-install/node_modules/is-absolute/LICENSE</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/grunt-install/node_modules/is-absolute/README.md</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/grunt-install/node_modules/is-absolute/index.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/grunt-install/node_modules/is-absolute/package.json</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/grunt-install/node_modules/is-accessor-descriptor/LICENSE</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/grunt-install/node_modules/is-accessor-descriptor/README.md</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/grunt-install/node_modules/is-accessor-descriptor/index.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/grunt-install/node_modules/is-accessor-descriptor/node_modules/kind-of/LICENSE</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/grunt-install/node_modules/is-accessor-descriptor/node_modules/kind-of/README.md</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/grunt-install/node_modules/is-accessor-descriptor/node_modules/kind-of/index.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/grunt-install/node_modules/is-accessor-descriptor/node_modules/kind-of/package.json</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/grunt-install/node_modules/is-accessor-descriptor/package.json</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/grunt-install/node_modules/is-buffer/LICENSE</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/grunt-install/node_modules/is-buffer/README.md</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/grunt-install/node_modules/is-buffer/index.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/grunt-install/node_modules/is-buffer/package.json</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/grunt-install/node_modules/is-buffer/test/basic.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/grunt-install/node_modules/is-data-descriptor/LICENSE</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/grunt-install/node_modules/is-data-descriptor/README.md</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/grunt-install/node_modules/is-data-descriptor/index.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/grunt-install/node_modules/is-data-descriptor/node_modules/kind-of/LICENSE</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/grunt-install/node_modules/is-data-descriptor/node_modules/kind-of/README.md</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/grunt-install/node_modules/is-data-descriptor/node_modules/kind-of/index.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/grunt-install/node_modules/is-data-descriptor/node_modules/kind-of/package.json</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/grunt-install/node_modules/is-data-descriptor/package.json</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/grunt-install/node_modules/is-descriptor/LICENSE</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/grunt-install/node_modules/is-descriptor/README.md</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/grunt-install/node_modules/is-descriptor/index.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/grunt-install/node_modules/is-descriptor/node_modules/kind-of/LICENSE</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/grunt-install/node_modules/is-descriptor/node_modules/kind-of/README.md</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/grunt-install/node_modules/is-descriptor/node_modules/kind-of/index.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/grunt-install/node_modules/is-descriptor/node_modules/kind-of/package.json</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/grunt-install/node_modules/is-descriptor/package.json</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/grunt-install/node_modules/is-extendable/LICENSE</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/grunt-install/node_modules/is-extendable/README.md</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/grunt-install/node_modules/is-extendable/index.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/grunt-install/node_modules/is-extendable/package.json</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/grunt-install/node_modules/is-extglob/LICENSE</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/grunt-install/node_modules/is-extglob/README.md</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/grunt-install/node_modules/is-extglob/index.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/grunt-install/node_modules/is-extglob/package.json</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/grunt-install/node_modules/is-glob/LICENSE</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/grunt-install/node_modules/is-glob/README.md</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/grunt-install/node_modules/is-glob/index.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/grunt-install/node_modules/is-glob/package.json</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/grunt-install/node_modules/is-number/LICENSE</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/grunt-install/node_modules/is-number/README.md</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/grunt-install/node_modules/is-number/index.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/grunt-install/node_modules/is-number/node_modules/kind-of/LICENSE</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/grunt-install/node_modules/is-number/node_modules/kind-of/README.md</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/grunt-install/node_modules/is-number/node_modules/kind-of/index.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/grunt-install/node_modules/is-number/node_modules/kind-of/package.json</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/grunt-install/node_modules/is-number/package.json</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/grunt-install/node_modules/is-plain-object/LICENSE</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/grunt-install/node_modules/is-plain-object/README.md</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/grunt-install/node_modules/is-plain-object/index.d.ts</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/grunt-install/node_modules/is-plain-object/index.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/grunt-install/node_modules/is-plain-object/package.json</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/grunt-install/node_modules/is-relative/LICENSE</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/grunt-install/node_modules/is-relative/README.md</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/grunt-install/node_modules/is-relative/index.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/grunt-install/node_modules/is-relative/package.json</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/grunt-install/node_modules/is-unc-path/LICENSE</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/grunt-install/node_modules/is-unc-path/README.md</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/grunt-install/node_modules/is-unc-path/index.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/grunt-install/node_modules/is-unc-path/package.json</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/grunt-install/node_modules/is-windows/LICENSE</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/grunt-install/node_modules/is-windows/README.md</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/grunt-install/node_modules/is-windows/index.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/grunt-install/node_modules/is-windows/package.json</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/grunt-install/node_modules/isarray/.npmignore</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/grunt-install/node_modules/isarray/.travis.yml</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/grunt-install/node_modules/isarray/Makefile</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/grunt-install/node_modules/isarray/README.md</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/grunt-install/node_modules/isarray/component.json</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/grunt-install/node_modules/isarray/index.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/grunt-install/node_modules/isarray/package.json</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/grunt-install/node_modules/isarray/test.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/grunt-install/node_modules/isexe/.npmignore</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/grunt-install/node_modules/isexe/LICENSE</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/grunt-install/node_modules/isexe/README.md</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/grunt-install/node_modules/isexe/index.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/grunt-install/node_modules/isexe/mode.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/grunt-install/node_modules/isexe/package.json</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/grunt-install/node_modules/isexe/test/basic.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/grunt-install/node_modules/isexe/windows.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/grunt-install/node_modules/isobject/LICENSE</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/grunt-install/node_modules/isobject/README.md</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/grunt-install/node_modules/isobject/index.d.ts</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/grunt-install/node_modules/isobject/index.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/grunt-install/node_modules/isobject/package.json</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/grunt-install/node_modules/kind-of/CHANGELOG.md</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/grunt-install/node_modules/kind-of/LICENSE</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/grunt-install/node_modules/kind-of/README.md</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/grunt-install/node_modules/kind-of/index.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/grunt-install/node_modules/kind-of/package.json</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/grunt-install/node_modules/liftoff/CHANGELOG</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/grunt-install/node_modules/liftoff/LICENSE</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/grunt-install/node_modules/liftoff/README.md</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/grunt-install/node_modules/liftoff/index.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/grunt-install/node_modules/liftoff/lib/build_config_name.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/grunt-install/node_modules/liftoff/lib/file_search.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/grunt-install/node_modules/liftoff/lib/find_config.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/grunt-install/node_modules/liftoff/lib/find_cwd.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/grunt-install/node_modules/liftoff/lib/get_node_flags.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/grunt-install/node_modules/liftoff/lib/parse_options.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/grunt-install/node_modules/liftoff/lib/register_loader.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/grunt-install/node_modules/liftoff/lib/silent_require.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/grunt-install/node_modules/liftoff/package.json</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/grunt-install/node_modules/make-iterator/LICENSE</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/grunt-install/node_modules/make-iterator/README.md</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/grunt-install/node_modules/make-iterator/index.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/grunt-install/node_modules/make-iterator/package.json</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/grunt-install/node_modules/map-cache/LICENSE</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/grunt-install/node_modules/map-cache/README.md</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/grunt-install/node_modules/map-cache/index.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/grunt-install/node_modules/map-cache/package.json</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/grunt-install/node_modules/map-visit/LICENSE</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/grunt-install/node_modules/map-visit/README.md</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/grunt-install/node_modules/map-visit/index.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/grunt-install/node_modules/map-visit/package.json</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/grunt-install/node_modules/micromatch/CHANGELOG.md</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/grunt-install/node_modules/micromatch/LICENSE</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/grunt-install/node_modules/micromatch/README.md</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/grunt-install/node_modules/micromatch/index.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/grunt-install/node_modules/micromatch/lib/.DS_Store</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/grunt-install/node_modules/micromatch/lib/cache.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/grunt-install/node_modules/micromatch/lib/compilers.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/grunt-install/node_modules/micromatch/lib/parsers.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/grunt-install/node_modules/micromatch/lib/utils.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/grunt-install/node_modules/micromatch/package.json</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/grunt-install/node_modules/mixin-deep/LICENSE</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/grunt-install/node_modules/mixin-deep/README.md</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/grunt-install/node_modules/mixin-deep/index.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/grunt-install/node_modules/mixin-deep/node_modules/is-extendable/LICENSE</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/grunt-install/node_modules/mixin-deep/node_modules/is-extendable/README.md</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/grunt-install/node_modules/mixin-deep/node_modules/is-extendable/index.d.ts</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/grunt-install/node_modules/mixin-deep/node_modules/is-extendable/index.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/grunt-install/node_modules/mixin-deep/node_modules/is-extendable/package.json</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/grunt-install/node_modules/mixin-deep/package.json</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/grunt-install/node_modules/ms/index.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/grunt-install/node_modules/ms/license.md</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/grunt-install/node_modules/ms/package.json</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/grunt-install/node_modules/ms/readme.md</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/grunt-install/node_modules/nanomatch/CHANGELOG.md</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/grunt-install/node_modules/nanomatch/LICENSE</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/grunt-install/node_modules/nanomatch/README.md</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/grunt-install/node_modules/nanomatch/index.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/grunt-install/node_modules/nanomatch/lib/cache.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/grunt-install/node_modules/nanomatch/lib/compilers.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/grunt-install/node_modules/nanomatch/lib/parsers.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/grunt-install/node_modules/nanomatch/lib/utils.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/grunt-install/node_modules/nanomatch/package.json</Path>
<Path fileType="data">/usr/share/boostnote/resources/app/grunt-install/node_modules/nopt/.npmignore</Path>
<Path fileType="data">/usr/share/boostnote/resources/app/grunt-install/node_modules/nopt/.travis.yml</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/grunt-install/node_modules/nopt/CHANGELOG.md</Path>
<Path fileType="data">/usr/share/boostnote/resources/app/grunt-install/node_modules/nopt/LICENSE</Path>
<Path fileType="data">/usr/share/boostnote/resources/app/grunt-install/node_modules/nopt/README.md</Path>
<Path fileType="data">/usr/share/boostnote/resources/app/grunt-install/node_modules/nopt/bin/nopt.js</Path>
@@ -180,16 +583,120 @@
<Path fileType="data">/usr/share/boostnote/resources/app/grunt-install/node_modules/nopt/lib/nopt.js</Path>
<Path fileType="data">/usr/share/boostnote/resources/app/grunt-install/node_modules/nopt/package.json</Path>
<Path fileType="data">/usr/share/boostnote/resources/app/grunt-install/node_modules/nopt/test/basic.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/grunt-install/node_modules/once/LICENSE</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/grunt-install/node_modules/once/README.md</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/grunt-install/node_modules/once/once.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/grunt-install/node_modules/once/package.json</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/grunt-install/node_modules/path-is-absolute/index.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/grunt-install/node_modules/path-is-absolute/license</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/grunt-install/node_modules/path-is-absolute/package.json</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/grunt-install/node_modules/path-is-absolute/readme.md</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/grunt-install/node_modules/object-copy/LICENSE</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/grunt-install/node_modules/object-copy/index.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/grunt-install/node_modules/object-copy/node_modules/define-property/LICENSE</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/grunt-install/node_modules/object-copy/node_modules/define-property/README.md</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/grunt-install/node_modules/object-copy/node_modules/define-property/index.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/grunt-install/node_modules/object-copy/node_modules/define-property/package.json</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/grunt-install/node_modules/object-copy/node_modules/kind-of/LICENSE</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/grunt-install/node_modules/object-copy/node_modules/kind-of/README.md</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/grunt-install/node_modules/object-copy/node_modules/kind-of/index.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/grunt-install/node_modules/object-copy/node_modules/kind-of/package.json</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/grunt-install/node_modules/object-copy/package.json</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/grunt-install/node_modules/object-visit/LICENSE</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/grunt-install/node_modules/object-visit/README.md</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/grunt-install/node_modules/object-visit/index.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/grunt-install/node_modules/object-visit/package.json</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/grunt-install/node_modules/object.defaults/LICENSE</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/grunt-install/node_modules/object.defaults/README.md</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/grunt-install/node_modules/object.defaults/immutable.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/grunt-install/node_modules/object.defaults/index.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/grunt-install/node_modules/object.defaults/mutable.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/grunt-install/node_modules/object.defaults/package.json</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/grunt-install/node_modules/object.map/LICENSE</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/grunt-install/node_modules/object.map/README.md</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/grunt-install/node_modules/object.map/index.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/grunt-install/node_modules/object.map/package.json</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/grunt-install/node_modules/object.pick/LICENSE</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/grunt-install/node_modules/object.pick/README.md</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/grunt-install/node_modules/object.pick/index.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/grunt-install/node_modules/object.pick/package.json</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/grunt-install/node_modules/os-homedir/index.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/grunt-install/node_modules/os-homedir/license</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/grunt-install/node_modules/os-homedir/package.json</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/grunt-install/node_modules/os-homedir/readme.md</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/grunt-install/node_modules/os-tmpdir/index.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/grunt-install/node_modules/os-tmpdir/license</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/grunt-install/node_modules/os-tmpdir/package.json</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/grunt-install/node_modules/os-tmpdir/readme.md</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/grunt-install/node_modules/osenv/LICENSE</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/grunt-install/node_modules/osenv/README.md</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/grunt-install/node_modules/osenv/osenv.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/grunt-install/node_modules/osenv/package.json</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/grunt-install/node_modules/parse-filepath/LICENSE</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/grunt-install/node_modules/parse-filepath/README.md</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/grunt-install/node_modules/parse-filepath/index.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/grunt-install/node_modules/parse-filepath/package.json</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/grunt-install/node_modules/parse-passwd/LICENSE</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/grunt-install/node_modules/parse-passwd/README.md</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/grunt-install/node_modules/parse-passwd/index.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/grunt-install/node_modules/parse-passwd/package.json</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/grunt-install/node_modules/pascalcase/LICENSE</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/grunt-install/node_modules/pascalcase/README.md</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/grunt-install/node_modules/pascalcase/index.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/grunt-install/node_modules/pascalcase/package.json</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/grunt-install/node_modules/path-parse/.travis.yml</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/grunt-install/node_modules/path-parse/LICENSE</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/grunt-install/node_modules/path-parse/README.md</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/grunt-install/node_modules/path-parse/index.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/grunt-install/node_modules/path-parse/package.json</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/grunt-install/node_modules/path-parse/test.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/grunt-install/node_modules/path-root-regex/LICENSE</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/grunt-install/node_modules/path-root-regex/README.md</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/grunt-install/node_modules/path-root-regex/index.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/grunt-install/node_modules/path-root-regex/package.json</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/grunt-install/node_modules/path-root/LICENSE</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/grunt-install/node_modules/path-root/README.md</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/grunt-install/node_modules/path-root/index.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/grunt-install/node_modules/path-root/package.json</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/grunt-install/node_modules/posix-character-classes/LICENSE</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/grunt-install/node_modules/posix-character-classes/README.md</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/grunt-install/node_modules/posix-character-classes/index.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/grunt-install/node_modules/posix-character-classes/package.json</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/grunt-install/node_modules/rechoir/.npmignore</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/grunt-install/node_modules/rechoir/.travis.yml</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/grunt-install/node_modules/rechoir/CHANGELOG</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/grunt-install/node_modules/rechoir/LICENSE</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/grunt-install/node_modules/rechoir/README.md</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/grunt-install/node_modules/rechoir/index.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/grunt-install/node_modules/rechoir/lib/extension.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/grunt-install/node_modules/rechoir/lib/normalize.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/grunt-install/node_modules/rechoir/lib/register.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/grunt-install/node_modules/rechoir/package.json</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/grunt-install/node_modules/regex-not/LICENSE</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/grunt-install/node_modules/regex-not/README.md</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/grunt-install/node_modules/regex-not/index.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/grunt-install/node_modules/regex-not/package.json</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/grunt-install/node_modules/repeat-element/LICENSE</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/grunt-install/node_modules/repeat-element/README.md</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/grunt-install/node_modules/repeat-element/index.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/grunt-install/node_modules/repeat-element/package.json</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/grunt-install/node_modules/repeat-string/LICENSE</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/grunt-install/node_modules/repeat-string/README.md</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/grunt-install/node_modules/repeat-string/index.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/grunt-install/node_modules/repeat-string/package.json</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/grunt-install/node_modules/resolve-dir/LICENSE</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/grunt-install/node_modules/resolve-dir/README.md</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/grunt-install/node_modules/resolve-dir/index.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/grunt-install/node_modules/resolve-dir/package.json</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/grunt-install/node_modules/resolve-url/.jshintrc</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/grunt-install/node_modules/resolve-url/LICENSE</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/grunt-install/node_modules/resolve-url/bower.json</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/grunt-install/node_modules/resolve-url/changelog.md</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/grunt-install/node_modules/resolve-url/component.json</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/grunt-install/node_modules/resolve-url/package.json</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/grunt-install/node_modules/resolve-url/readme.md</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/grunt-install/node_modules/resolve-url/resolve-url.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/grunt-install/node_modules/resolve-url/test/resolve-url.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/grunt-install/node_modules/resolve/.editorconfig</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/grunt-install/node_modules/resolve/.eslintignore</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/grunt-install/node_modules/resolve/.eslintrc</Path>
<Path fileType="data">/usr/share/boostnote/resources/app/grunt-install/node_modules/resolve/.travis.yml</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/grunt-install/node_modules/resolve/CHANGELOG.md</Path>
<Path fileType="data">/usr/share/boostnote/resources/app/grunt-install/node_modules/resolve/LICENSE</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/grunt-install/node_modules/resolve/appveyor.yml</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/grunt-install/node_modules/resolve/changelog.hbs</Path>
<Path fileType="data">/usr/share/boostnote/resources/app/grunt-install/node_modules/resolve/example/async.js</Path>
<Path fileType="data">/usr/share/boostnote/resources/app/grunt-install/node_modules/resolve/example/sync.js</Path>
<Path fileType="data">/usr/share/boostnote/resources/app/grunt-install/node_modules/resolve/index.js</Path>
@@ -198,9 +705,11 @@
<Path fileType="data">/usr/share/boostnote/resources/app/grunt-install/node_modules/resolve/lib/core.js</Path>
<Path fileType="data">/usr/share/boostnote/resources/app/grunt-install/node_modules/resolve/lib/core.json</Path>
<Path fileType="data">/usr/share/boostnote/resources/app/grunt-install/node_modules/resolve/lib/node-modules-paths.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/grunt-install/node_modules/resolve/lib/normalize-options.js</Path>
<Path fileType="data">/usr/share/boostnote/resources/app/grunt-install/node_modules/resolve/lib/sync.js</Path>
<Path fileType="data">/usr/share/boostnote/resources/app/grunt-install/node_modules/resolve/package.json</Path>
<Path fileType="data">/usr/share/boostnote/resources/app/grunt-install/node_modules/resolve/readme.markdown</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/grunt-install/node_modules/resolve/test/.eslintrc</Path>
<Path fileType="data">/usr/share/boostnote/resources/app/grunt-install/node_modules/resolve/test/core.js</Path>
<Path fileType="data">/usr/share/boostnote/resources/app/grunt-install/node_modules/resolve/test/dotdot.js</Path>
<Path fileType="data">/usr/share/boostnote/resources/app/grunt-install/node_modules/resolve/test/dotdot/abc/index.js</Path>
@@ -215,6 +724,7 @@
<Path fileType="data">/usr/share/boostnote/resources/app/grunt-install/node_modules/resolve/test/module_dir/ymodules/aaa/index.js</Path>
<Path fileType="data">/usr/share/boostnote/resources/app/grunt-install/node_modules/resolve/test/module_dir/zmodules/bbb/main.js</Path>
<Path fileType="data">/usr/share/boostnote/resources/app/grunt-install/node_modules/resolve/test/module_dir/zmodules/bbb/package.json</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/grunt-install/node_modules/resolve/test/node-modules-paths.js</Path>
<Path fileType="data">/usr/share/boostnote/resources/app/grunt-install/node_modules/resolve/test/node_path.js</Path>
<Path fileType="data">/usr/share/boostnote/resources/app/grunt-install/node_modules/resolve/test/node_path/x/aaa/index.js</Path>
<Path fileType="data">/usr/share/boostnote/resources/app/grunt-install/node_modules/resolve/test/node_path/x/ccc/index.js</Path>
@@ -223,10 +733,6 @@
<Path fileType="data">/usr/share/boostnote/resources/app/grunt-install/node_modules/resolve/test/nonstring.js</Path>
<Path fileType="data">/usr/share/boostnote/resources/app/grunt-install/node_modules/resolve/test/pathfilter.js</Path>
<Path fileType="data">/usr/share/boostnote/resources/app/grunt-install/node_modules/resolve/test/pathfilter/deep_ref/main.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/grunt-install/node_modules/resolve/test/pathfilter/deep_ref/node_modules/deep/alt.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/grunt-install/node_modules/resolve/test/pathfilter/deep_ref/node_modules/deep/deeper/ref.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/grunt-install/node_modules/resolve/test/pathfilter/deep_ref/node_modules/deep/package.json</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/grunt-install/node_modules/resolve/test/pathfilter/deep_ref/node_modules/deep/ref.js</Path>
<Path fileType="data">/usr/share/boostnote/resources/app/grunt-install/node_modules/resolve/test/precedence.js</Path>
<Path fileType="data">/usr/share/boostnote/resources/app/grunt-install/node_modules/resolve/test/precedence/aaa.js</Path>
<Path fileType="data">/usr/share/boostnote/resources/app/grunt-install/node_modules/resolve/test/precedence/aaa/index.js</Path>
@@ -234,34 +740,236 @@
<Path fileType="data">/usr/share/boostnote/resources/app/grunt-install/node_modules/resolve/test/precedence/bbb.js</Path>
<Path fileType="data">/usr/share/boostnote/resources/app/grunt-install/node_modules/resolve/test/precedence/bbb/main.js</Path>
<Path fileType="data">/usr/share/boostnote/resources/app/grunt-install/node_modules/resolve/test/resolver.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/grunt-install/node_modules/resolve/test/resolver/bar/node_modules/foo/index.js</Path>
<Path fileType="data">/usr/share/boostnote/resources/app/grunt-install/node_modules/resolve/test/resolver/baz/doom.js</Path>
<Path fileType="data">/usr/share/boostnote/resources/app/grunt-install/node_modules/resolve/test/resolver/baz/package.json</Path>
<Path fileType="data">/usr/share/boostnote/resources/app/grunt-install/node_modules/resolve/test/resolver/baz/quux.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/grunt-install/node_modules/resolve/test/resolver/biz/node_modules/garply/lib/index.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/grunt-install/node_modules/resolve/test/resolver/biz/node_modules/garply/package.json</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/grunt-install/node_modules/resolve/test/resolver/biz/node_modules/grux/index.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/grunt-install/node_modules/resolve/test/resolver/biz/node_modules/tiv/index.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/grunt-install/node_modules/resolve/test/resolver/browser_field/a.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/grunt-install/node_modules/resolve/test/resolver/browser_field/b.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/grunt-install/node_modules/resolve/test/resolver/browser_field/package.json</Path>
<Path fileType="data">/usr/share/boostnote/resources/app/grunt-install/node_modules/resolve/test/resolver/cup.coffee</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/grunt-install/node_modules/resolve/test/resolver/dot_main/index.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/grunt-install/node_modules/resolve/test/resolver/dot_main/package.json</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/grunt-install/node_modules/resolve/test/resolver/dot_slash_main/index.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/grunt-install/node_modules/resolve/test/resolver/dot_slash_main/package.json</Path>
<Path fileType="data">/usr/share/boostnote/resources/app/grunt-install/node_modules/resolve/test/resolver/foo.js</Path>
<Path fileType="data">/usr/share/boostnote/resources/app/grunt-install/node_modules/resolve/test/resolver/incorrect_main/index.js</Path>
<Path fileType="data">/usr/share/boostnote/resources/app/grunt-install/node_modules/resolve/test/resolver/incorrect_main/package.json</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/grunt-install/node_modules/resolve/test/resolver/invalid_main/package.json</Path>
<Path fileType="data">/usr/share/boostnote/resources/app/grunt-install/node_modules/resolve/test/resolver/mug.coffee</Path>
<Path fileType="data">/usr/share/boostnote/resources/app/grunt-install/node_modules/resolve/test/resolver/mug.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/grunt-install/node_modules/resolve/test/resolver/multirepo/lerna.json</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/grunt-install/node_modules/resolve/test/resolver/multirepo/package.json</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/grunt-install/node_modules/resolve/test/resolver/multirepo/packages/package-a/index.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/grunt-install/node_modules/resolve/test/resolver/multirepo/packages/package-a/package.json</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/grunt-install/node_modules/resolve/test/resolver/multirepo/packages/package-b/index.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/grunt-install/node_modules/resolve/test/resolver/multirepo/packages/package-b/package.json</Path>
<Path fileType="data">/usr/share/boostnote/resources/app/grunt-install/node_modules/resolve/test/resolver/other_path/lib/other-lib.js</Path>
<Path fileType="data">/usr/share/boostnote/resources/app/grunt-install/node_modules/resolve/test/resolver/other_path/root.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/grunt-install/node_modules/resolve/test/resolver/punycode/node_modules/punycode/index.js</Path>
<Path fileType="data">/usr/share/boostnote/resources/app/grunt-install/node_modules/resolve/test/resolver/quux/foo/index.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/grunt-install/node_modules/resolve/test/resolver/same_names/foo.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/grunt-install/node_modules/resolve/test/resolver/same_names/foo/index.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/grunt-install/node_modules/resolve/test/resolver/symlinked/_/node_modules/foo.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/grunt-install/node_modules/resolve/test/resolver/symlinked/_/symlink_target/.gitkeep</Path>
<Path fileType="data">/usr/share/boostnote/resources/app/grunt-install/node_modules/resolve/test/resolver/without_basedir/main.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/grunt-install/node_modules/resolve/test/resolver/without_basedir/node_modules/mymodule.js</Path>
<Path fileType="data">/usr/share/boostnote/resources/app/grunt-install/node_modules/resolve/test/resolver_sync.js</Path>
<Path fileType="data">/usr/share/boostnote/resources/app/grunt-install/node_modules/resolve/test/subdirs.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/grunt-install/node_modules/resolve/test/subdirs/node_modules/a/b/c/x.json</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/grunt-install/node_modules/resolve/test/subdirs/node_modules/a/package.json</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/grunt-install/node_modules/wrappy/LICENSE</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/grunt-install/node_modules/wrappy/README.md</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/grunt-install/node_modules/wrappy/package.json</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/grunt-install/node_modules/wrappy/wrappy.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/grunt-install/node_modules/resolve/test/symlinks.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/grunt-install/node_modules/ret/LICENSE</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/grunt-install/node_modules/ret/README.md</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/grunt-install/node_modules/ret/lib/index.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/grunt-install/node_modules/ret/lib/positions.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/grunt-install/node_modules/ret/lib/sets.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/grunt-install/node_modules/ret/lib/types.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/grunt-install/node_modules/ret/lib/util.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/grunt-install/node_modules/ret/package.json</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/grunt-install/node_modules/safe-regex/.travis.yml</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/grunt-install/node_modules/safe-regex/LICENSE</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/grunt-install/node_modules/safe-regex/example/safe.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/grunt-install/node_modules/safe-regex/index.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/grunt-install/node_modules/safe-regex/package.json</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/grunt-install/node_modules/safe-regex/readme.markdown</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/grunt-install/node_modules/safe-regex/test/regex.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/grunt-install/node_modules/set-value/LICENSE</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/grunt-install/node_modules/set-value/README.md</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/grunt-install/node_modules/set-value/index.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/grunt-install/node_modules/set-value/node_modules/extend-shallow/LICENSE</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/grunt-install/node_modules/set-value/node_modules/extend-shallow/README.md</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/grunt-install/node_modules/set-value/node_modules/extend-shallow/index.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/grunt-install/node_modules/set-value/node_modules/extend-shallow/package.json</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/grunt-install/node_modules/set-value/package.json</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/grunt-install/node_modules/snapdragon-node/LICENSE</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/grunt-install/node_modules/snapdragon-node/README.md</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/grunt-install/node_modules/snapdragon-node/index.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/grunt-install/node_modules/snapdragon-node/node_modules/define-property/LICENSE</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/grunt-install/node_modules/snapdragon-node/node_modules/define-property/README.md</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/grunt-install/node_modules/snapdragon-node/node_modules/define-property/index.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/grunt-install/node_modules/snapdragon-node/node_modules/define-property/package.json</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/grunt-install/node_modules/snapdragon-node/node_modules/is-accessor-descriptor/LICENSE</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/grunt-install/node_modules/snapdragon-node/node_modules/is-accessor-descriptor/README.md</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/grunt-install/node_modules/snapdragon-node/node_modules/is-accessor-descriptor/index.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/grunt-install/node_modules/snapdragon-node/node_modules/is-accessor-descriptor/package.json</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/grunt-install/node_modules/snapdragon-node/node_modules/is-data-descriptor/LICENSE</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/grunt-install/node_modules/snapdragon-node/node_modules/is-data-descriptor/README.md</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/grunt-install/node_modules/snapdragon-node/node_modules/is-data-descriptor/index.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/grunt-install/node_modules/snapdragon-node/node_modules/is-data-descriptor/package.json</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/grunt-install/node_modules/snapdragon-node/node_modules/is-descriptor/LICENSE</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/grunt-install/node_modules/snapdragon-node/node_modules/is-descriptor/README.md</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/grunt-install/node_modules/snapdragon-node/node_modules/is-descriptor/index.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/grunt-install/node_modules/snapdragon-node/node_modules/is-descriptor/package.json</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/grunt-install/node_modules/snapdragon-node/package.json</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/grunt-install/node_modules/snapdragon-util/LICENSE</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/grunt-install/node_modules/snapdragon-util/README.md</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/grunt-install/node_modules/snapdragon-util/index.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/grunt-install/node_modules/snapdragon-util/node_modules/kind-of/LICENSE</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/grunt-install/node_modules/snapdragon-util/node_modules/kind-of/README.md</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/grunt-install/node_modules/snapdragon-util/node_modules/kind-of/index.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/grunt-install/node_modules/snapdragon-util/node_modules/kind-of/package.json</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/grunt-install/node_modules/snapdragon-util/package.json</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/grunt-install/node_modules/snapdragon/LICENSE</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/grunt-install/node_modules/snapdragon/README.md</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/grunt-install/node_modules/snapdragon/index.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/grunt-install/node_modules/snapdragon/lib/compiler.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/grunt-install/node_modules/snapdragon/lib/parser.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/grunt-install/node_modules/snapdragon/lib/position.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/grunt-install/node_modules/snapdragon/lib/source-maps.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/grunt-install/node_modules/snapdragon/lib/utils.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/grunt-install/node_modules/snapdragon/node_modules/define-property/LICENSE</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/grunt-install/node_modules/snapdragon/node_modules/define-property/README.md</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/grunt-install/node_modules/snapdragon/node_modules/define-property/index.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/grunt-install/node_modules/snapdragon/node_modules/define-property/package.json</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/grunt-install/node_modules/snapdragon/node_modules/extend-shallow/LICENSE</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/grunt-install/node_modules/snapdragon/node_modules/extend-shallow/README.md</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/grunt-install/node_modules/snapdragon/node_modules/extend-shallow/index.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/grunt-install/node_modules/snapdragon/node_modules/extend-shallow/package.json</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/grunt-install/node_modules/snapdragon/package.json</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/grunt-install/node_modules/source-map-resolve/.jshintrc</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/grunt-install/node_modules/source-map-resolve/.travis.yml</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/grunt-install/node_modules/source-map-resolve/LICENSE</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/grunt-install/node_modules/source-map-resolve/bower.json</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/grunt-install/node_modules/source-map-resolve/changelog.md</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/grunt-install/node_modules/source-map-resolve/component.json</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/grunt-install/node_modules/source-map-resolve/generate-source-map-resolve.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/grunt-install/node_modules/source-map-resolve/lib/decode-uri-component.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/grunt-install/node_modules/source-map-resolve/lib/resolve-url.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/grunt-install/node_modules/source-map-resolve/lib/source-map-resolve-node.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/grunt-install/node_modules/source-map-resolve/package.json</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/grunt-install/node_modules/source-map-resolve/readme.md</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/grunt-install/node_modules/source-map-resolve/source-map-resolve.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/grunt-install/node_modules/source-map-resolve/source-map-resolve.js.template</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/grunt-install/node_modules/source-map-resolve/test/common.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/grunt-install/node_modules/source-map-resolve/test/read.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/grunt-install/node_modules/source-map-resolve/test/source-map-resolve.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/grunt-install/node_modules/source-map-resolve/test/windows.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/grunt-install/node_modules/source-map-resolve/x-package.json5</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/grunt-install/node_modules/source-map-url/.jshintrc</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/grunt-install/node_modules/source-map-url/LICENSE</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/grunt-install/node_modules/source-map-url/bower.json</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/grunt-install/node_modules/source-map-url/changelog.md</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/grunt-install/node_modules/source-map-url/component.json</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/grunt-install/node_modules/source-map-url/package.json</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/grunt-install/node_modules/source-map-url/readme.md</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/grunt-install/node_modules/source-map-url/source-map-url.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/grunt-install/node_modules/source-map-url/test/source-map-url.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/grunt-install/node_modules/source-map-url/x-package.json5</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/grunt-install/node_modules/source-map/CHANGELOG.md</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/grunt-install/node_modules/source-map/LICENSE</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/grunt-install/node_modules/source-map/README.md</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/grunt-install/node_modules/source-map/dist/source-map.debug.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/grunt-install/node_modules/source-map/dist/source-map.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/grunt-install/node_modules/source-map/dist/source-map.min.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/grunt-install/node_modules/source-map/dist/source-map.min.js.map</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/grunt-install/node_modules/source-map/lib/array-set.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/grunt-install/node_modules/source-map/lib/base64-vlq.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/grunt-install/node_modules/source-map/lib/base64.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/grunt-install/node_modules/source-map/lib/binary-search.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/grunt-install/node_modules/source-map/lib/mapping-list.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/grunt-install/node_modules/source-map/lib/quick-sort.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/grunt-install/node_modules/source-map/lib/source-map-consumer.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/grunt-install/node_modules/source-map/lib/source-map-generator.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/grunt-install/node_modules/source-map/lib/source-node.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/grunt-install/node_modules/source-map/lib/util.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/grunt-install/node_modules/source-map/package.json</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/grunt-install/node_modules/source-map/source-map.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/grunt-install/node_modules/split-string/LICENSE</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/grunt-install/node_modules/split-string/README.md</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/grunt-install/node_modules/split-string/index.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/grunt-install/node_modules/split-string/package.json</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/grunt-install/node_modules/static-extend/LICENSE</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/grunt-install/node_modules/static-extend/index.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/grunt-install/node_modules/static-extend/node_modules/define-property/LICENSE</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/grunt-install/node_modules/static-extend/node_modules/define-property/README.md</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/grunt-install/node_modules/static-extend/node_modules/define-property/index.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/grunt-install/node_modules/static-extend/node_modules/define-property/package.json</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/grunt-install/node_modules/static-extend/package.json</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/grunt-install/node_modules/to-object-path/LICENSE</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/grunt-install/node_modules/to-object-path/README.md</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/grunt-install/node_modules/to-object-path/index.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/grunt-install/node_modules/to-object-path/node_modules/kind-of/LICENSE</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/grunt-install/node_modules/to-object-path/node_modules/kind-of/README.md</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/grunt-install/node_modules/to-object-path/node_modules/kind-of/index.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/grunt-install/node_modules/to-object-path/node_modules/kind-of/package.json</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/grunt-install/node_modules/to-object-path/package.json</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/grunt-install/node_modules/to-regex-range/LICENSE</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/grunt-install/node_modules/to-regex-range/README.md</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/grunt-install/node_modules/to-regex-range/index.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/grunt-install/node_modules/to-regex-range/package.json</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/grunt-install/node_modules/to-regex/LICENSE</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/grunt-install/node_modules/to-regex/README.md</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/grunt-install/node_modules/to-regex/index.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/grunt-install/node_modules/to-regex/package.json</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/grunt-install/node_modules/unc-path-regex/LICENSE</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/grunt-install/node_modules/unc-path-regex/README.md</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/grunt-install/node_modules/unc-path-regex/index.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/grunt-install/node_modules/unc-path-regex/package.json</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/grunt-install/node_modules/union-value/LICENSE</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/grunt-install/node_modules/union-value/README.md</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/grunt-install/node_modules/union-value/index.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/grunt-install/node_modules/union-value/node_modules/extend-shallow/LICENSE</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/grunt-install/node_modules/union-value/node_modules/extend-shallow/README.md</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/grunt-install/node_modules/union-value/node_modules/extend-shallow/index.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/grunt-install/node_modules/union-value/node_modules/extend-shallow/package.json</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/grunt-install/node_modules/union-value/node_modules/set-value/LICENSE</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/grunt-install/node_modules/union-value/node_modules/set-value/README.md</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/grunt-install/node_modules/union-value/node_modules/set-value/index.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/grunt-install/node_modules/union-value/node_modules/set-value/package.json</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/grunt-install/node_modules/union-value/package.json</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/grunt-install/node_modules/unset-value/LICENSE</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/grunt-install/node_modules/unset-value/README.md</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/grunt-install/node_modules/unset-value/index.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/grunt-install/node_modules/unset-value/node_modules/has-value/LICENSE</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/grunt-install/node_modules/unset-value/node_modules/has-value/README.md</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/grunt-install/node_modules/unset-value/node_modules/has-value/index.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/grunt-install/node_modules/unset-value/node_modules/has-value/node_modules/isobject/LICENSE</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/grunt-install/node_modules/unset-value/node_modules/has-value/node_modules/isobject/README.md</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/grunt-install/node_modules/unset-value/node_modules/has-value/node_modules/isobject/index.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/grunt-install/node_modules/unset-value/node_modules/has-value/node_modules/isobject/package.json</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/grunt-install/node_modules/unset-value/node_modules/has-value/package.json</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/grunt-install/node_modules/unset-value/node_modules/has-values/LICENSE</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/grunt-install/node_modules/unset-value/node_modules/has-values/README.md</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/grunt-install/node_modules/unset-value/node_modules/has-values/index.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/grunt-install/node_modules/unset-value/node_modules/has-values/package.json</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/grunt-install/node_modules/unset-value/package.json</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/grunt-install/node_modules/urix/.jshintrc</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/grunt-install/node_modules/urix/LICENSE</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/grunt-install/node_modules/urix/index.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/grunt-install/node_modules/urix/package.json</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/grunt-install/node_modules/urix/readme.md</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/grunt-install/node_modules/urix/test/index.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/grunt-install/node_modules/use/LICENSE</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/grunt-install/node_modules/use/README.md</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/grunt-install/node_modules/use/index.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/grunt-install/node_modules/use/package.json</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/grunt-install/node_modules/v8flags/LICENSE</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/grunt-install/node_modules/v8flags/README.md</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/grunt-install/node_modules/v8flags/config-path.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/grunt-install/node_modules/v8flags/index.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/grunt-install/node_modules/v8flags/package.json</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/grunt-install/node_modules/which/CHANGELOG.md</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/grunt-install/node_modules/which/LICENSE</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/grunt-install/node_modules/which/README.md</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/grunt-install/node_modules/which/bin/which</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/grunt-install/node_modules/which/package.json</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/grunt-install/node_modules/which/which.js</Path>
<Path fileType="data">/usr/share/boostnote/resources/app/grunt-install/package-lock.json</Path>
<Path fileType="data">/usr/share/boostnote/resources/app/index.js</Path>
<Path fileType="data">/usr/share/boostnote/resources/app/lib/ipcServer.js</Path>
@@ -269,6 +977,7 @@
<Path fileType="data">/usr/share/boostnote/resources/app/lib/main-menu.js</Path>
<Path fileType="data">/usr/share/boostnote/resources/app/lib/main-window.js</Path>
<Path fileType="data">/usr/share/boostnote/resources/app/lib/main.html</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/lib/touchbar-menu.js</Path>
<Path fileType="data">/usr/share/boostnote/resources/app/locales/da.json</Path>
<Path fileType="data">/usr/share/boostnote/resources/app/locales/de.json</Path>
<Path fileType="data">/usr/share/boostnote/resources/app/locales/en.json</Path>
@@ -285,9 +994,21 @@
<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/th.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/@ava</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@babel</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@concordance</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@enyaxu/markdown-it-anchor/CHANGELOG.md</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@enyaxu/markdown-it-anchor/README.md</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@enyaxu/markdown-it-anchor/UNLICENSE</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@enyaxu/markdown-it-anchor/index.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@enyaxu/markdown-it-anchor/package.json</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@enyaxu/markdown-it-anchor/runkit.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@icons</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@ladjs</Path>
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@rokt33r/markdown-it-math/.npmignore</Path>
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@rokt33r/markdown-it-math/.travis.yml</Path>
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/@rokt33r/markdown-it-math/LICENCE</Path>
@@ -325,21 +1046,152 @@
<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/@types</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/abab/CHANGELOG.md</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/abab/LICENSE.md</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/abab/README.md</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/abab/index.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/abab/lib/atob.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/abab/lib/btoa.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/abab/package.json</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/acorn-globals/LICENSE</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/acorn-globals/README.md</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/acorn-globals/index.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/acorn-globals/node_modules/acorn/CHANGELOG.md</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/acorn-globals/node_modules/acorn/LICENSE</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/acorn-globals/node_modules/acorn/README.md</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/acorn-globals/node_modules/acorn/bin/acorn</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/acorn-globals/node_modules/acorn/dist/acorn.d.ts</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/acorn-globals/node_modules/acorn/dist/acorn.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/acorn-globals/node_modules/acorn/dist/acorn.js.map</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/acorn-globals/node_modules/acorn/dist/acorn.mjs</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/acorn-globals/node_modules/acorn/dist/acorn.mjs.map</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/acorn-globals/node_modules/acorn/dist/bin.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/acorn-globals/node_modules/acorn/package.json</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/acorn-globals/package.json</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/acorn-walk/CHANGELOG.md</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/acorn-walk/LICENSE</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/acorn-walk/README.md</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/acorn-walk/dist/walk.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/acorn-walk/dist/walk.js.map</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/acorn-walk/dist/walk.mjs</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/acorn-walk/dist/walk.mjs.map</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/acorn-walk/package.json</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/acorn/AUTHORS</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/acorn/CHANGELOG.md</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/acorn/LICENSE</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/acorn/README.md</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/acorn/bin/_acorn.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/acorn/bin/acorn</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/acorn/bin/run_test262.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/acorn/bin/test262.whitelist</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/acorn/dist/.keep</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/acorn/dist/acorn.es.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/acorn/dist/acorn.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/acorn/dist/acorn_loose.es.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/acorn/dist/acorn_loose.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/acorn/dist/walk.es.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/acorn/dist/walk.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/acorn/package.json</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/ajv/.tonic_example.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/ajv/LICENSE</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/ajv/README.md</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/ajv/dist/ajv.bundle.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/ajv/dist/ajv.min.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/ajv/dist/ajv.min.js.map</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/ajv/lib/.DS_Store</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/ajv/lib/ajv.d.ts</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/ajv/lib/ajv.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/ajv/lib/cache.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/ajv/lib/compile/async.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/ajv/lib/compile/equal.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/ajv/lib/compile/error_classes.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/ajv/lib/compile/formats.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/ajv/lib/compile/index.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/ajv/lib/compile/resolve.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/ajv/lib/compile/rules.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/ajv/lib/compile/schema_obj.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/ajv/lib/compile/ucs2length.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/ajv/lib/compile/util.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/ajv/lib/data.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/ajv/lib/dot/_limit.jst</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/ajv/lib/dot/_limitItems.jst</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/ajv/lib/dot/_limitLength.jst</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/ajv/lib/dot/_limitProperties.jst</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/ajv/lib/dot/allOf.jst</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/ajv/lib/dot/anyOf.jst</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/ajv/lib/dot/coerce.def</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/ajv/lib/dot/comment.jst</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/ajv/lib/dot/const.jst</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/ajv/lib/dot/contains.jst</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/ajv/lib/dot/custom.jst</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/ajv/lib/dot/defaults.def</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/ajv/lib/dot/definitions.def</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/ajv/lib/dot/dependencies.jst</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/ajv/lib/dot/enum.jst</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/ajv/lib/dot/errors.def</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/ajv/lib/dot/format.jst</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/ajv/lib/dot/if.jst</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/ajv/lib/dot/items.jst</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/ajv/lib/dot/missing.def</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/ajv/lib/dot/multipleOf.jst</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/ajv/lib/dot/not.jst</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/ajv/lib/dot/oneOf.jst</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/ajv/lib/dot/pattern.jst</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/ajv/lib/dot/properties.jst</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/ajv/lib/dot/propertyNames.jst</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/ajv/lib/dot/ref.jst</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/ajv/lib/dot/required.jst</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/ajv/lib/dot/uniqueItems.jst</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/ajv/lib/dot/validate.jst</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/ajv/lib/dotjs/README.md</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/ajv/lib/dotjs/_limit.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/ajv/lib/dotjs/_limitItems.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/ajv/lib/dotjs/_limitLength.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/ajv/lib/dotjs/_limitProperties.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/ajv/lib/dotjs/allOf.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/ajv/lib/dotjs/anyOf.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/ajv/lib/dotjs/comment.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/ajv/lib/dotjs/const.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/ajv/lib/dotjs/contains.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/ajv/lib/dotjs/custom.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/ajv/lib/dotjs/dependencies.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/ajv/lib/dotjs/enum.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/ajv/lib/dotjs/format.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/ajv/lib/dotjs/if.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/ajv/lib/dotjs/index.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/ajv/lib/dotjs/items.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/ajv/lib/dotjs/multipleOf.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/ajv/lib/dotjs/not.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/ajv/lib/dotjs/oneOf.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/ajv/lib/dotjs/pattern.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/ajv/lib/dotjs/properties.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/ajv/lib/dotjs/propertyNames.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/ajv/lib/dotjs/ref.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/ajv/lib/dotjs/required.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/ajv/lib/dotjs/uniqueItems.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/ajv/lib/dotjs/validate.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/ajv/lib/keyword.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/ajv/lib/refs/data.json</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/ajv/lib/refs/json-schema-draft-04.json</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/ajv/lib/refs/json-schema-draft-06.json</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/ajv/lib/refs/json-schema-draft-07.json</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/ajv/package.json</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/ajv/scripts/.eslintrc.yml</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/ajv/scripts/bundle.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/ajv/scripts/compile-dots.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/ajv/scripts/info</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/ajv/scripts/prepare-tests</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/ajv/scripts/publish-built-version</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/ajv/scripts/travis-gh-pages</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/ansi-red/LICENSE</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/ansi-red/index.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/ansi-red/package.json</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/ansi-red/readme.md</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/ansi-wrap/LICENSE</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/ansi-wrap/README.md</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/ansi-wrap/index.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/ansi-wrap/package.json</Path>
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/argparse/CHANGELOG.md</Path>
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/argparse/LICENSE</Path>
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/argparse/README.md</Path>
@@ -366,7 +1218,29 @@
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/argparse/lib/help/formatter.js</Path>
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/argparse/lib/namespace.js</Path>
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/argparse/lib/utils.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/argparse/node_modules/sprintf-js/.npmignore</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/argparse/node_modules/sprintf-js/LICENSE</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/argparse/node_modules/sprintf-js/README.md</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/argparse/node_modules/sprintf-js/bower.json</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/argparse/node_modules/sprintf-js/demo/angular.html</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/argparse/node_modules/sprintf-js/dist/angular-sprintf.min.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/argparse/node_modules/sprintf-js/dist/angular-sprintf.min.js.map</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/argparse/node_modules/sprintf-js/dist/angular-sprintf.min.map</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/argparse/node_modules/sprintf-js/dist/sprintf.min.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/argparse/node_modules/sprintf-js/dist/sprintf.min.js.map</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/argparse/node_modules/sprintf-js/dist/sprintf.min.map</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/argparse/node_modules/sprintf-js/gruntfile.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/argparse/node_modules/sprintf-js/package.json</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/argparse/node_modules/sprintf-js/src/angular-sprintf.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/argparse/node_modules/sprintf-js/src/sprintf.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/argparse/node_modules/sprintf-js/test/test.js</Path>
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/argparse/package.json</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/array-equal/.npmignore</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/array-equal/LICENSE</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/array-equal/README.md</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/array-equal/component.json</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/array-equal/index.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/array-equal/package.json</Path>
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/array-uniq/index.js</Path>
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/array-uniq/license</Path>
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/array-uniq/package.json</Path>
@@ -379,6 +1253,22 @@
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/asap/browser-raw.js</Path>
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/asap/package.json</Path>
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/asap/raw.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/asar/node_modules</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/async-limiter/.travis.yml</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/async-limiter/LICENSE</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/async-limiter/coverage/coverage.json</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/async-limiter/coverage/lcov-report/async-throttle/index.html</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/async-limiter/coverage/lcov-report/async-throttle/index.js.html</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/async-limiter/coverage/lcov-report/base.css</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/async-limiter/coverage/lcov-report/index.html</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/async-limiter/coverage/lcov-report/prettify.css</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/async-limiter/coverage/lcov-report/prettify.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/async-limiter/coverage/lcov-report/sort-arrow-sprite.png</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/async-limiter/coverage/lcov-report/sorter.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/async-limiter/coverage/lcov.info</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/async-limiter/index.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/async-limiter/package.json</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/async-limiter/readme.md</Path>
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/async/CHANGELOG.md</Path>
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/async/LICENSE</Path>
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/async/README.md</Path>
@@ -386,6 +1276,62 @@
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/async/dist/async.min.js</Path>
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/async/lib/async.js</Path>
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/async/package.json</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/asynckit/LICENSE</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/asynckit/README.md</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/asynckit/bench.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/asynckit/index.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/asynckit/lib/abort.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/asynckit/lib/async.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/asynckit/lib/defer.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/asynckit/lib/iterate.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/asynckit/lib/readable_asynckit.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/asynckit/lib/readable_parallel.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/asynckit/lib/readable_serial.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/asynckit/lib/readable_serial_ordered.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/asynckit/lib/state.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/asynckit/lib/streamify.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/asynckit/lib/terminator.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/asynckit/package.json</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/asynckit/parallel.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/asynckit/serial.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/asynckit/serialOrdered.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/asynckit/stream.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/autolinker/.gitmodules</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/autolinker/.jshintrc</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/autolinker/.npmignore</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/autolinker/Gruntfile.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/autolinker/LICENSE</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/autolinker/README.md</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/autolinker/bower.json</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/autolinker/dist/Autolinker.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/autolinker/dist/Autolinker.min.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/autolinker/package.json</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/autolinker/src/AnchorTagBuilder.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/autolinker/src/Autolinker.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/autolinker/src/HtmlTag.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/autolinker/src/Util.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/autolinker/src/htmlParser/ElementNode.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/autolinker/src/htmlParser/EntityNode.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/autolinker/src/htmlParser/HtmlNode.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/autolinker/src/htmlParser/HtmlParser.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/autolinker/src/htmlParser/TextNode.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/autolinker/src/match/Email.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/autolinker/src/match/Match.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/autolinker/src/match/Twitter.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/autolinker/src/match/Url.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/autolinker/src/matchParser/MatchParser.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/autolinker/src/matchParser/MatchValidator.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/autolinker/tests/AutolinkerSpec.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/autolinker/tests/HtmlTagSpec.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/autolinker/tests/UtilSpec.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/autolinker/tests/htmlParser/HtmlParserSpec.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/autolinker/tests/index.html</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/aws4/.travis.yml</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/aws4/LICENSE</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/aws4/README.md</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/aws4/aws4.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/aws4/lru.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/aws4/package.json</Path>
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/babel-runtime/.npmignore</Path>
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/babel-runtime/README.md</Path>
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/babel-runtime/core-js.js</Path>
@@ -1374,6 +2320,7 @@
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/babel-runtime/node_modules/core-js/library/modules/_a-function.js</Path>
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/babel-runtime/node_modules/core-js/library/modules/_a-number-value.js</Path>
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/babel-runtime/node_modules/core-js/library/modules/_add-to-unscopables.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/babel-runtime/node_modules/core-js/library/modules/_advance-string-index.js</Path>
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/babel-runtime/node_modules/core-js/library/modules/_an-instance.js</Path>
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/babel-runtime/node_modules/core-js/library/modules/_an-object.js</Path>
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/babel-runtime/node_modules/core-js/library/modules/_array-copy-within.js</Path>
@@ -1465,6 +2412,8 @@
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/babel-runtime/node_modules/core-js/library/modules/_property-desc.js</Path>
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/babel-runtime/node_modules/core-js/library/modules/_redefine-all.js</Path>
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/babel-runtime/node_modules/core-js/library/modules/_redefine.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/babel-runtime/node_modules/core-js/library/modules/_regexp-exec-abstract.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/babel-runtime/node_modules/core-js/library/modules/_regexp-exec.js</Path>
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/babel-runtime/node_modules/core-js/library/modules/_replacer.js</Path>
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/babel-runtime/node_modules/core-js/library/modules/_same-value.js</Path>
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/babel-runtime/node_modules/core-js/library/modules/_set-collection-from.js</Path>
@@ -1609,6 +2558,7 @@
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/babel-runtime/node_modules/core-js/library/modules/es6.reflect.set-prototype-of.js</Path>
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/babel-runtime/node_modules/core-js/library/modules/es6.reflect.set.js</Path>
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/babel-runtime/node_modules/core-js/library/modules/es6.regexp.constructor.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/babel-runtime/node_modules/core-js/library/modules/es6.regexp.exec.js</Path>
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/babel-runtime/node_modules/core-js/library/modules/es6.regexp.flags.js</Path>
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/babel-runtime/node_modules/core-js/library/modules/es6.regexp.match.js</Path>
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/babel-runtime/node_modules/core-js/library/modules/es6.regexp.replace.js</Path>
@@ -1726,6 +2676,7 @@
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/babel-runtime/node_modules/core-js/modules/_a-function.js</Path>
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/babel-runtime/node_modules/core-js/modules/_a-number-value.js</Path>
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/babel-runtime/node_modules/core-js/modules/_add-to-unscopables.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/babel-runtime/node_modules/core-js/modules/_advance-string-index.js</Path>
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/babel-runtime/node_modules/core-js/modules/_an-instance.js</Path>
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/babel-runtime/node_modules/core-js/modules/_an-object.js</Path>
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/babel-runtime/node_modules/core-js/modules/_array-copy-within.js</Path>
@@ -1817,6 +2768,8 @@
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/babel-runtime/node_modules/core-js/modules/_property-desc.js</Path>
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/babel-runtime/node_modules/core-js/modules/_redefine-all.js</Path>
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/babel-runtime/node_modules/core-js/modules/_redefine.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/babel-runtime/node_modules/core-js/modules/_regexp-exec-abstract.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/babel-runtime/node_modules/core-js/modules/_regexp-exec.js</Path>
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/babel-runtime/node_modules/core-js/modules/_replacer.js</Path>
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/babel-runtime/node_modules/core-js/modules/_same-value.js</Path>
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/babel-runtime/node_modules/core-js/modules/_set-collection-from.js</Path>
@@ -1961,6 +2914,7 @@
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/babel-runtime/node_modules/core-js/modules/es6.reflect.set-prototype-of.js</Path>
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/babel-runtime/node_modules/core-js/modules/es6.reflect.set.js</Path>
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/babel-runtime/node_modules/core-js/modules/es6.regexp.constructor.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/babel-runtime/node_modules/core-js/modules/es6.regexp.exec.js</Path>
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/babel-runtime/node_modules/core-js/modules/es6.regexp.flags.js</Path>
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/babel-runtime/node_modules/core-js/modules/es6.regexp.match.js</Path>
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/babel-runtime/node_modules/core-js/modules/es6.regexp.replace.js</Path>
@@ -2067,6 +3021,8 @@
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/babel-runtime/node_modules/core-js/modules/library/_path.js</Path>
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/babel-runtime/node_modules/core-js/modules/library/_redefine-all.js</Path>
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/babel-runtime/node_modules/core-js/modules/library/_redefine.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/babel-runtime/node_modules/core-js/modules/library/_regexp-exec-abstract.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/babel-runtime/node_modules/core-js/modules/library/_regexp-exec.js</Path>
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/babel-runtime/node_modules/core-js/modules/library/_set-species.js</Path>
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/babel-runtime/node_modules/core-js/modules/library/es6.date.to-json.js</Path>
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/babel-runtime/node_modules/core-js/modules/library/es6.date.to-primitive.js</Path>
@@ -2075,6 +3031,7 @@
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/babel-runtime/node_modules/core-js/modules/library/es6.number.constructor.js</Path>
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/babel-runtime/node_modules/core-js/modules/library/es6.object.to-string.js</Path>
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/babel-runtime/node_modules/core-js/modules/library/es6.regexp.constructor.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/babel-runtime/node_modules/core-js/modules/library/es6.regexp.exec.js</Path>
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/babel-runtime/node_modules/core-js/modules/library/es6.regexp.flags.js</Path>
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/babel-runtime/node_modules/core-js/modules/library/es6.regexp.match.js</Path>
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/babel-runtime/node_modules/core-js/modules/library/es6.regexp.replace.js</Path>
@@ -2106,20 +3063,27 @@
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/balanced-match/README.md</Path>
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/balanced-match/index.js</Path>
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/balanced-match/package.json</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/bcrypt-pbkdf/CONTRIBUTING.md</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/bcrypt-pbkdf/LICENSE</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/bcrypt-pbkdf/README.md</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/bcrypt-pbkdf/index.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/bcrypt-pbkdf/package.json</Path>
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/brace-expansion/LICENSE</Path>
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/brace-expansion/README.md</Path>
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/brace-expansion/index.js</Path>
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/brace-expansion/package.json</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/browser-process-hrtime/LICENSE</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/browser-process-hrtime/README.md</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/browser-process-hrtime/index.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/browser-process-hrtime/package.json</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/buffer-from/LICENSE</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/buffer-from/index.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/buffer-from/package.json</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/buffer-from/readme.md</Path>
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/capture-stack-trace/index.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/capture-stack-trace/license</Path>
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/capture-stack-trace/package.json</Path>
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/capture-stack-trace/readme.md</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/chalk/index.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/chalk/index.js.flow</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/chalk/license</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/chalk/package.json</Path>
- <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/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>
@@ -2169,6 +3133,7 @@
<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/accessibility.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>
@@ -2254,6 +3219,7 @@
<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/accessibility.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>
@@ -2353,6 +3319,7 @@
<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.animations.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>
@@ -2412,8 +3379,40 @@
<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/controller.bubble/point-style.json</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/chart.js/test/fixtures/controller.bubble/point-style.png</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/chart.js/test/fixtures/controller.line/point-style.json</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/chart.js/test/fixtures/controller.line/point-style.png</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/chart.js/test/fixtures/controller.polarArea/angle-array.json</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/chart.js/test/fixtures/controller.polarArea/angle-array.png</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/chart.js/test/fixtures/controller.polarArea/angle-undefined.json</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/chart.js/test/fixtures/controller.polarArea/angle-undefined.png</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/chart.js/test/fixtures/controller.radar/point-style.json</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/chart.js/test/fixtures/controller.radar/point-style.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/core.scale/tick-drawing.json</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/chart.js/test/fixtures/core.scale/tick-drawing.png</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/chart.js/test/fixtures/element.point/point-style-circle.json</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/chart.js/test/fixtures/element.point/point-style-circle.png</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/chart.js/test/fixtures/element.point/point-style-cross-rot.json</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/chart.js/test/fixtures/element.point/point-style-cross-rot.png</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/chart.js/test/fixtures/element.point/point-style-cross.json</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/chart.js/test/fixtures/element.point/point-style-cross.png</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/chart.js/test/fixtures/element.point/point-style-dash.json</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/chart.js/test/fixtures/element.point/point-style-dash.png</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/chart.js/test/fixtures/element.point/point-style-line.json</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/chart.js/test/fixtures/element.point/point-style-line.png</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/chart.js/test/fixtures/element.point/point-style-rect-rot.json</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/chart.js/test/fixtures/element.point/point-style-rect-rot.png</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/chart.js/test/fixtures/element.point/point-style-rect-rounded.json</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/chart.js/test/fixtures/element.point/point-style-rect-rounded.png</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/chart.js/test/fixtures/element.point/point-style-rect.json</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/chart.js/test/fixtures/element.point/point-style-rect.png</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/chart.js/test/fixtures/element.point/point-style-star.json</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/chart.js/test/fixtures/element.point/point-style-star.png</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/chart.js/test/fixtures/element.point/point-style-triangle.json</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/chart.js/test/fixtures/element.point/point-style-triangle.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>
@@ -2474,6 +3473,7 @@
<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/global.namespace.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>
@@ -2506,21 +3506,16 @@
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/classnames/dedupe.js</Path>
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/classnames/index.js</Path>
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/classnames/package.json</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/codemirror-mode-elixir/.editorconfig</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/codemirror-mode-elixir/.eslintignore</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/codemirror-mode-elixir/.eslintrc.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/codemirror-mode-elixir/.npmignore</Path>
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/codemirror-mode-elixir/CHANGELOG.md</Path>
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/codemirror-mode-elixir/LICENSE</Path>
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/codemirror-mode-elixir/README.md</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/codemirror-mode-elixir/dist/elixir.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/codemirror-mode-elixir/dist/elixir.min.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/codemirror-mode-elixir/dist/elixir.mjs</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/codemirror-mode-elixir/index.html</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/codemirror-mode-elixir/index.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/codemirror-mode-elixir/dist/codemirror-mode-elixir.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/codemirror-mode-elixir/dist/codemirror-mode-elixir.js.map</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/codemirror-mode-elixir/dist/codemirror-mode-elixir.m.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/codemirror-mode-elixir/dist/codemirror-mode-elixir.m.js.map</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/codemirror-mode-elixir/dist/codemirror-mode-elixir.umd.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/codemirror-mode-elixir/dist/codemirror-mode-elixir.umd.js.map</Path>
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/codemirror-mode-elixir/package.json</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/codemirror-mode-elixir/rollup.config.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/codemirror-mode-elixir/yarn.lock</Path>
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/codemirror/AUTHORS</Path>
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/codemirror/CHANGELOG.md</Path>
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/codemirror/CONTRIBUTING.md</Path>
@@ -2877,13 +3872,10 @@
<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/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>
@@ -2905,12 +3897,9 @@
<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/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>
@@ -2918,6 +3907,10 @@
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/concat-map/index.js</Path>
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/concat-map/package.json</Path>
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/concat-map/test/map.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/concat-stream/LICENSE</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/concat-stream/index.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/concat-stream/package.json</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/concat-stream/readme.md</Path>
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/conf/index.js</Path>
<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>
@@ -3808,15 +4801,448 @@
<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/cssom/LICENSE.txt</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/cssom/README.mdown</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/cssom/lib/CSSDocumentRule.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/cssom/lib/CSSFontFaceRule.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/cssom/lib/CSSHostRule.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/cssom/lib/CSSImportRule.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/cssom/lib/CSSKeyframeRule.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/cssom/lib/CSSKeyframesRule.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/cssom/lib/CSSMediaRule.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/cssom/lib/CSSOM.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/cssom/lib/CSSRule.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/cssom/lib/CSSStyleDeclaration.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/cssom/lib/CSSStyleRule.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/cssom/lib/CSSStyleSheet.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/cssom/lib/CSSSupportsRule.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/cssom/lib/CSSValue.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/cssom/lib/CSSValueExpression.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/cssom/lib/MatcherList.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/cssom/lib/MediaList.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/cssom/lib/Parser.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/cssom/lib/StyleSheet.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/cssom/lib/clone.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/cssom/lib/index.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/cssom/lib/parse.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/cssom/lib/snapshot.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/cssom/package.json</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/cssstyle/MIT-LICENSE.txt</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/cssstyle/README.md</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/cssstyle/lib/CSSStyleDeclaration.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/cssstyle/lib/parsers.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/cssstyle/lib/properties.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/cssstyle/lib/properties/alignContent.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/cssstyle/lib/properties/alignItems.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/cssstyle/lib/properties/alignmentBaseline.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/cssstyle/lib/properties/azimuth.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/cssstyle/lib/properties/background.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/cssstyle/lib/properties/backgroundAttachment.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/cssstyle/lib/properties/backgroundClip.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/cssstyle/lib/properties/backgroundColor.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/cssstyle/lib/properties/backgroundImage.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/cssstyle/lib/properties/backgroundOrigin.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/cssstyle/lib/properties/backgroundPosition.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/cssstyle/lib/properties/backgroundPositionX.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/cssstyle/lib/properties/backgroundPositionY.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/cssstyle/lib/properties/backgroundRepeat.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/cssstyle/lib/properties/backgroundRepeatX.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/cssstyle/lib/properties/backgroundRepeatY.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/cssstyle/lib/properties/backgroundSize.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/cssstyle/lib/properties/baselineShift.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/cssstyle/lib/properties/border.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/cssstyle/lib/properties/borderBottom.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/cssstyle/lib/properties/borderBottomColor.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/cssstyle/lib/properties/borderBottomLeftRadius.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/cssstyle/lib/properties/borderBottomRightRadius.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/cssstyle/lib/properties/borderBottomStyle.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/cssstyle/lib/properties/borderBottomWidth.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/cssstyle/lib/properties/borderCollapse.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/cssstyle/lib/properties/borderColor.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/cssstyle/lib/properties/borderImage.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/cssstyle/lib/properties/borderImageOutset.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/cssstyle/lib/properties/borderImageRepeat.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/cssstyle/lib/properties/borderImageSlice.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/cssstyle/lib/properties/borderImageSource.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/cssstyle/lib/properties/borderImageWidth.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/cssstyle/lib/properties/borderLeft.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/cssstyle/lib/properties/borderLeftColor.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/cssstyle/lib/properties/borderLeftStyle.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/cssstyle/lib/properties/borderLeftWidth.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/cssstyle/lib/properties/borderRadius.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/cssstyle/lib/properties/borderRight.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/cssstyle/lib/properties/borderRightColor.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/cssstyle/lib/properties/borderRightStyle.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/cssstyle/lib/properties/borderRightWidth.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/cssstyle/lib/properties/borderSpacing.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/cssstyle/lib/properties/borderStyle.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/cssstyle/lib/properties/borderTop.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/cssstyle/lib/properties/borderTopColor.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/cssstyle/lib/properties/borderTopLeftRadius.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/cssstyle/lib/properties/borderTopRightRadius.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/cssstyle/lib/properties/borderTopStyle.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/cssstyle/lib/properties/borderTopWidth.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/cssstyle/lib/properties/borderWidth.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/cssstyle/lib/properties/bottom.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/cssstyle/lib/properties/boxShadow.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/cssstyle/lib/properties/boxSizing.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/cssstyle/lib/properties/captionSide.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/cssstyle/lib/properties/clear.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/cssstyle/lib/properties/clip.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/cssstyle/lib/properties/color.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/cssstyle/lib/properties/colorInterpolation.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/cssstyle/lib/properties/colorInterpolationFilters.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/cssstyle/lib/properties/colorProfile.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/cssstyle/lib/properties/colorRendering.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/cssstyle/lib/properties/content.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/cssstyle/lib/properties/counterIncrement.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/cssstyle/lib/properties/counterReset.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/cssstyle/lib/properties/cssFloat.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/cssstyle/lib/properties/cue.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/cssstyle/lib/properties/cueAfter.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/cssstyle/lib/properties/cueBefore.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/cssstyle/lib/properties/cursor.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/cssstyle/lib/properties/direction.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/cssstyle/lib/properties/display.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/cssstyle/lib/properties/dominantBaseline.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/cssstyle/lib/properties/elevation.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/cssstyle/lib/properties/emptyCells.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/cssstyle/lib/properties/enableBackground.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/cssstyle/lib/properties/fill.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/cssstyle/lib/properties/fillOpacity.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/cssstyle/lib/properties/fillRule.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/cssstyle/lib/properties/filter.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/cssstyle/lib/properties/flexDirection.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/cssstyle/lib/properties/flexFlow.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/cssstyle/lib/properties/flexWrap.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/cssstyle/lib/properties/floodColor.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/cssstyle/lib/properties/floodOpacity.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/cssstyle/lib/properties/font.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/cssstyle/lib/properties/fontFamily.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/cssstyle/lib/properties/fontSize.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/cssstyle/lib/properties/fontSizeAdjust.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/cssstyle/lib/properties/fontStretch.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/cssstyle/lib/properties/fontStyle.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/cssstyle/lib/properties/fontVariant.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/cssstyle/lib/properties/fontWeight.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/cssstyle/lib/properties/glyphOrientationHorizontal.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/cssstyle/lib/properties/glyphOrientationVertical.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/cssstyle/lib/properties/height.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/cssstyle/lib/properties/imageRendering.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/cssstyle/lib/properties/justifyContent.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/cssstyle/lib/properties/kerning.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/cssstyle/lib/properties/left.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/cssstyle/lib/properties/letterSpacing.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/cssstyle/lib/properties/lightingColor.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/cssstyle/lib/properties/lineHeight.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/cssstyle/lib/properties/listStyle.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/cssstyle/lib/properties/listStyleImage.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/cssstyle/lib/properties/listStylePosition.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/cssstyle/lib/properties/listStyleType.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/cssstyle/lib/properties/margin.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/cssstyle/lib/properties/marginBottom.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/cssstyle/lib/properties/marginLeft.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/cssstyle/lib/properties/marginRight.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/cssstyle/lib/properties/marginTop.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/cssstyle/lib/properties/marker.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/cssstyle/lib/properties/markerEnd.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/cssstyle/lib/properties/markerMid.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/cssstyle/lib/properties/markerOffset.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/cssstyle/lib/properties/markerStart.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/cssstyle/lib/properties/marks.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/cssstyle/lib/properties/mask.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/cssstyle/lib/properties/maxHeight.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/cssstyle/lib/properties/maxWidth.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/cssstyle/lib/properties/minHeight.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/cssstyle/lib/properties/minWidth.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/cssstyle/lib/properties/opacity.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/cssstyle/lib/properties/orphans.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/cssstyle/lib/properties/outline.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/cssstyle/lib/properties/outlineColor.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/cssstyle/lib/properties/outlineOffset.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/cssstyle/lib/properties/outlineStyle.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/cssstyle/lib/properties/outlineWidth.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/cssstyle/lib/properties/overflow.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/cssstyle/lib/properties/overflowX.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/cssstyle/lib/properties/overflowY.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/cssstyle/lib/properties/padding.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/cssstyle/lib/properties/paddingBottom.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/cssstyle/lib/properties/paddingLeft.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/cssstyle/lib/properties/paddingRight.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/cssstyle/lib/properties/paddingTop.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/cssstyle/lib/properties/page.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/cssstyle/lib/properties/pageBreakAfter.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/cssstyle/lib/properties/pageBreakBefore.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/cssstyle/lib/properties/pageBreakInside.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/cssstyle/lib/properties/pause.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/cssstyle/lib/properties/pauseAfter.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/cssstyle/lib/properties/pauseBefore.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/cssstyle/lib/properties/pitch.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/cssstyle/lib/properties/pitchRange.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/cssstyle/lib/properties/playDuring.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/cssstyle/lib/properties/pointerEvents.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/cssstyle/lib/properties/position.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/cssstyle/lib/properties/quotes.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/cssstyle/lib/properties/resize.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/cssstyle/lib/properties/richness.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/cssstyle/lib/properties/right.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/cssstyle/lib/properties/shapeRendering.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/cssstyle/lib/properties/size.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/cssstyle/lib/properties/speak.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/cssstyle/lib/properties/speakHeader.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/cssstyle/lib/properties/speakNumeral.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/cssstyle/lib/properties/speakPunctuation.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/cssstyle/lib/properties/speechRate.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/cssstyle/lib/properties/src.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/cssstyle/lib/properties/stopColor.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/cssstyle/lib/properties/stopOpacity.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/cssstyle/lib/properties/stress.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/cssstyle/lib/properties/stroke.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/cssstyle/lib/properties/strokeDasharray.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/cssstyle/lib/properties/strokeDashoffset.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/cssstyle/lib/properties/strokeLinecap.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/cssstyle/lib/properties/strokeLinejoin.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/cssstyle/lib/properties/strokeMiterlimit.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/cssstyle/lib/properties/strokeOpacity.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/cssstyle/lib/properties/strokeWidth.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/cssstyle/lib/properties/tableLayout.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/cssstyle/lib/properties/textAlign.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/cssstyle/lib/properties/textAnchor.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/cssstyle/lib/properties/textDecoration.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/cssstyle/lib/properties/textIndent.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/cssstyle/lib/properties/textLineThrough.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/cssstyle/lib/properties/textLineThroughColor.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/cssstyle/lib/properties/textLineThroughMode.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/cssstyle/lib/properties/textLineThroughStyle.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/cssstyle/lib/properties/textLineThroughWidth.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/cssstyle/lib/properties/textOverflow.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/cssstyle/lib/properties/textOverline.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/cssstyle/lib/properties/textOverlineColor.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/cssstyle/lib/properties/textOverlineMode.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/cssstyle/lib/properties/textOverlineStyle.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/cssstyle/lib/properties/textOverlineWidth.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/cssstyle/lib/properties/textRendering.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/cssstyle/lib/properties/textShadow.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/cssstyle/lib/properties/textTransform.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/cssstyle/lib/properties/textUnderline.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/cssstyle/lib/properties/textUnderlineColor.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/cssstyle/lib/properties/textUnderlineMode.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/cssstyle/lib/properties/textUnderlineStyle.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/cssstyle/lib/properties/textUnderlineWidth.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/cssstyle/lib/properties/top.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/cssstyle/lib/properties/transform.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/cssstyle/lib/properties/unicodeBidi.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/cssstyle/lib/properties/unicodeRange.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/cssstyle/lib/properties/vectorEffect.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/cssstyle/lib/properties/verticalAlign.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/cssstyle/lib/properties/visibility.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/cssstyle/lib/properties/voiceFamily.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/cssstyle/lib/properties/volume.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/cssstyle/lib/properties/webkitAnimation.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/cssstyle/lib/properties/webkitAnimationDelay.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/cssstyle/lib/properties/webkitAnimationDirection.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/cssstyle/lib/properties/webkitAnimationDuration.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/cssstyle/lib/properties/webkitAnimationFillMode.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/cssstyle/lib/properties/webkitAnimationIterationCount.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/cssstyle/lib/properties/webkitAnimationName.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/cssstyle/lib/properties/webkitAnimationPlayState.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/cssstyle/lib/properties/webkitAnimationTimingFunction.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/cssstyle/lib/properties/webkitAppearance.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/cssstyle/lib/properties/webkitAspectRatio.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/cssstyle/lib/properties/webkitBackfaceVisibility.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/cssstyle/lib/properties/webkitBackgroundClip.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/cssstyle/lib/properties/webkitBackgroundComposite.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/cssstyle/lib/properties/webkitBackgroundOrigin.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/cssstyle/lib/properties/webkitBackgroundSize.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/cssstyle/lib/properties/webkitBorderAfter.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/cssstyle/lib/properties/webkitBorderAfterColor.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/cssstyle/lib/properties/webkitBorderAfterStyle.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/cssstyle/lib/properties/webkitBorderAfterWidth.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/cssstyle/lib/properties/webkitBorderBefore.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/cssstyle/lib/properties/webkitBorderBeforeColor.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/cssstyle/lib/properties/webkitBorderBeforeStyle.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/cssstyle/lib/properties/webkitBorderBeforeWidth.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/cssstyle/lib/properties/webkitBorderEnd.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/cssstyle/lib/properties/webkitBorderEndColor.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/cssstyle/lib/properties/webkitBorderEndStyle.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/cssstyle/lib/properties/webkitBorderEndWidth.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/cssstyle/lib/properties/webkitBorderFit.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/cssstyle/lib/properties/webkitBorderHorizontalSpacing.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/cssstyle/lib/properties/webkitBorderImage.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/cssstyle/lib/properties/webkitBorderRadius.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/cssstyle/lib/properties/webkitBorderStart.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/cssstyle/lib/properties/webkitBorderStartColor.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/cssstyle/lib/properties/webkitBorderStartStyle.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/cssstyle/lib/properties/webkitBorderStartWidth.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/cssstyle/lib/properties/webkitBorderVerticalSpacing.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/cssstyle/lib/properties/webkitBoxAlign.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/cssstyle/lib/properties/webkitBoxDirection.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/cssstyle/lib/properties/webkitBoxFlex.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/cssstyle/lib/properties/webkitBoxFlexGroup.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/cssstyle/lib/properties/webkitBoxLines.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/cssstyle/lib/properties/webkitBoxOrdinalGroup.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/cssstyle/lib/properties/webkitBoxOrient.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/cssstyle/lib/properties/webkitBoxPack.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/cssstyle/lib/properties/webkitBoxReflect.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/cssstyle/lib/properties/webkitBoxShadow.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/cssstyle/lib/properties/webkitColorCorrection.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/cssstyle/lib/properties/webkitColumnAxis.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/cssstyle/lib/properties/webkitColumnBreakAfter.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/cssstyle/lib/properties/webkitColumnBreakBefore.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/cssstyle/lib/properties/webkitColumnBreakInside.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/cssstyle/lib/properties/webkitColumnCount.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/cssstyle/lib/properties/webkitColumnGap.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/cssstyle/lib/properties/webkitColumnRule.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/cssstyle/lib/properties/webkitColumnRuleColor.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/cssstyle/lib/properties/webkitColumnRuleStyle.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/cssstyle/lib/properties/webkitColumnRuleWidth.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/cssstyle/lib/properties/webkitColumnSpan.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/cssstyle/lib/properties/webkitColumnWidth.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/cssstyle/lib/properties/webkitColumns.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/cssstyle/lib/properties/webkitFilter.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/cssstyle/lib/properties/webkitFlexAlign.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/cssstyle/lib/properties/webkitFlexDirection.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/cssstyle/lib/properties/webkitFlexFlow.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/cssstyle/lib/properties/webkitFlexItemAlign.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/cssstyle/lib/properties/webkitFlexLinePack.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/cssstyle/lib/properties/webkitFlexOrder.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/cssstyle/lib/properties/webkitFlexPack.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/cssstyle/lib/properties/webkitFlexWrap.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/cssstyle/lib/properties/webkitFlowFrom.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/cssstyle/lib/properties/webkitFlowInto.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/cssstyle/lib/properties/webkitFontFeatureSettings.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/cssstyle/lib/properties/webkitFontKerning.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/cssstyle/lib/properties/webkitFontSizeDelta.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/cssstyle/lib/properties/webkitFontSmoothing.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/cssstyle/lib/properties/webkitFontVariantLigatures.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/cssstyle/lib/properties/webkitHighlight.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/cssstyle/lib/properties/webkitHyphenateCharacter.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/cssstyle/lib/properties/webkitHyphenateLimitAfter.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/cssstyle/lib/properties/webkitHyphenateLimitBefore.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/cssstyle/lib/properties/webkitHyphenateLimitLines.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/cssstyle/lib/properties/webkitHyphens.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/cssstyle/lib/properties/webkitLineAlign.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/cssstyle/lib/properties/webkitLineBoxContain.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/cssstyle/lib/properties/webkitLineBreak.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/cssstyle/lib/properties/webkitLineClamp.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/cssstyle/lib/properties/webkitLineGrid.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/cssstyle/lib/properties/webkitLineSnap.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/cssstyle/lib/properties/webkitLocale.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/cssstyle/lib/properties/webkitLogicalHeight.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/cssstyle/lib/properties/webkitLogicalWidth.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/cssstyle/lib/properties/webkitMarginAfter.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/cssstyle/lib/properties/webkitMarginAfterCollapse.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/cssstyle/lib/properties/webkitMarginBefore.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/cssstyle/lib/properties/webkitMarginBeforeCollapse.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/cssstyle/lib/properties/webkitMarginBottomCollapse.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/cssstyle/lib/properties/webkitMarginCollapse.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/cssstyle/lib/properties/webkitMarginEnd.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/cssstyle/lib/properties/webkitMarginStart.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/cssstyle/lib/properties/webkitMarginTopCollapse.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/cssstyle/lib/properties/webkitMarquee.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/cssstyle/lib/properties/webkitMarqueeDirection.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/cssstyle/lib/properties/webkitMarqueeIncrement.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/cssstyle/lib/properties/webkitMarqueeRepetition.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/cssstyle/lib/properties/webkitMarqueeSpeed.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/cssstyle/lib/properties/webkitMarqueeStyle.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/cssstyle/lib/properties/webkitMask.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/cssstyle/lib/properties/webkitMaskAttachment.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/cssstyle/lib/properties/webkitMaskBoxImage.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/cssstyle/lib/properties/webkitMaskBoxImageOutset.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/cssstyle/lib/properties/webkitMaskBoxImageRepeat.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/cssstyle/lib/properties/webkitMaskBoxImageSlice.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/cssstyle/lib/properties/webkitMaskBoxImageSource.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/cssstyle/lib/properties/webkitMaskBoxImageWidth.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/cssstyle/lib/properties/webkitMaskClip.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/cssstyle/lib/properties/webkitMaskComposite.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/cssstyle/lib/properties/webkitMaskImage.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/cssstyle/lib/properties/webkitMaskOrigin.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/cssstyle/lib/properties/webkitMaskPosition.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/cssstyle/lib/properties/webkitMaskPositionX.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/cssstyle/lib/properties/webkitMaskPositionY.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/cssstyle/lib/properties/webkitMaskRepeat.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/cssstyle/lib/properties/webkitMaskRepeatX.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/cssstyle/lib/properties/webkitMaskRepeatY.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/cssstyle/lib/properties/webkitMaskSize.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/cssstyle/lib/properties/webkitMatchNearestMailBlockquoteColor.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/cssstyle/lib/properties/webkitMaxLogicalHeight.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/cssstyle/lib/properties/webkitMaxLogicalWidth.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/cssstyle/lib/properties/webkitMinLogicalHeight.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/cssstyle/lib/properties/webkitMinLogicalWidth.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/cssstyle/lib/properties/webkitNbspMode.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/cssstyle/lib/properties/webkitOverflowScrolling.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/cssstyle/lib/properties/webkitPaddingAfter.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/cssstyle/lib/properties/webkitPaddingBefore.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/cssstyle/lib/properties/webkitPaddingEnd.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/cssstyle/lib/properties/webkitPaddingStart.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/cssstyle/lib/properties/webkitPerspective.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/cssstyle/lib/properties/webkitPerspectiveOrigin.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/cssstyle/lib/properties/webkitPerspectiveOriginX.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/cssstyle/lib/properties/webkitPerspectiveOriginY.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/cssstyle/lib/properties/webkitPrintColorAdjust.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/cssstyle/lib/properties/webkitRegionBreakAfter.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/cssstyle/lib/properties/webkitRegionBreakBefore.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/cssstyle/lib/properties/webkitRegionBreakInside.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/cssstyle/lib/properties/webkitRegionOverflow.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/cssstyle/lib/properties/webkitRtlOrdering.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/cssstyle/lib/properties/webkitSvgShadow.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/cssstyle/lib/properties/webkitTapHighlightColor.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/cssstyle/lib/properties/webkitTextCombine.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/cssstyle/lib/properties/webkitTextDecorationsInEffect.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/cssstyle/lib/properties/webkitTextEmphasis.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/cssstyle/lib/properties/webkitTextEmphasisColor.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/cssstyle/lib/properties/webkitTextEmphasisPosition.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/cssstyle/lib/properties/webkitTextEmphasisStyle.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/cssstyle/lib/properties/webkitTextFillColor.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/cssstyle/lib/properties/webkitTextOrientation.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/cssstyle/lib/properties/webkitTextSecurity.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/cssstyle/lib/properties/webkitTextSizeAdjust.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/cssstyle/lib/properties/webkitTextStroke.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/cssstyle/lib/properties/webkitTextStrokeColor.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/cssstyle/lib/properties/webkitTextStrokeWidth.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/cssstyle/lib/properties/webkitTransform.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/cssstyle/lib/properties/webkitTransformOrigin.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/cssstyle/lib/properties/webkitTransformOriginX.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/cssstyle/lib/properties/webkitTransformOriginY.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/cssstyle/lib/properties/webkitTransformOriginZ.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/cssstyle/lib/properties/webkitTransformStyle.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/cssstyle/lib/properties/webkitTransition.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/cssstyle/lib/properties/webkitTransitionDelay.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/cssstyle/lib/properties/webkitTransitionDuration.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/cssstyle/lib/properties/webkitTransitionProperty.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/cssstyle/lib/properties/webkitTransitionTimingFunction.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/cssstyle/lib/properties/webkitUserDrag.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/cssstyle/lib/properties/webkitUserModify.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/cssstyle/lib/properties/webkitUserSelect.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/cssstyle/lib/properties/webkitWrap.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/cssstyle/lib/properties/webkitWrapFlow.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/cssstyle/lib/properties/webkitWrapMargin.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/cssstyle/lib/properties/webkitWrapPadding.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/cssstyle/lib/properties/webkitWrapShapeInside.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/cssstyle/lib/properties/webkitWrapShapeOutside.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/cssstyle/lib/properties/webkitWrapThrough.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/cssstyle/lib/properties/webkitWritingMode.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/cssstyle/lib/properties/whiteSpace.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/cssstyle/lib/properties/widows.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/cssstyle/lib/properties/width.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/cssstyle/lib/properties/wordBreak.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/cssstyle/lib/properties/wordSpacing.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/cssstyle/lib/properties/wordWrap.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/cssstyle/lib/properties/writingMode.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/cssstyle/lib/properties/zIndex.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/cssstyle/lib/properties/zoom.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/cssstyle/lib/validProperties.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/cssstyle/package.json</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/cssstyle/scripts/generate_properties.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/cssstyle/scripts/generate_valid_properties.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/cssstyle/tests/tests.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/d3-array/.eslintrc.json</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/dist/d3-array.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/d3-array/dist/d3-array.min.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/rollup.config.js</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>
@@ -3828,6 +5254,7 @@
<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/index.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>
@@ -3848,179 +5275,179 @@
<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-array/yarn.lock</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/d3-axis/.eslintrc.json</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/dist/d3-axis.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/d3-axis/dist/d3-axis.min.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/rollup.config.js</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-axis/src/index.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/d3-axis/yarn.lock</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/d3-brush/.eslintrc.json</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/dist/d3-brush.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/d3-brush/dist/d3-brush.min.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/rollup.config.js</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/index.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-brush/yarn.lock</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/d3-chord/.eslintrc.json</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/dist/d3-chord.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/d3-chord/dist/d3-chord.min.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/rollup.config.js</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/index.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-chord/yarn.lock</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/d3-collection/.eslintrc.json</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/dist/d3-collection.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/d3-collection/dist/d3-collection.min.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/rollup.config.js</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/index.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-collection/yarn-error.log</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/d3-collection/yarn.lock</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/d3-color/.eslintrc.json</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/dist/d3-color.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/d3-color/dist/d3-color.min.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/rollup.config.js</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/index.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-color/yarn.lock</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/d3-contour/.eslintrc.json</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/d3-contour/LICENSE</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/d3-contour/README.md</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/d3-contour/dist/d3-contour.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/d3-contour/dist/d3-contour.min.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/d3-contour/package.json</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/d3-contour/rollup.config.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/d3-contour/src/area.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/d3-contour/src/array.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/d3-contour/src/ascending.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/d3-contour/src/blur.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/d3-contour/src/constant.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/d3-contour/src/contains.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/d3-contour/src/contours.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/d3-contour/src/density.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/d3-contour/src/index.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/d3-contour/src/noop.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/d3-contour/yarn.lock</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/d3-dispatch/.eslintrc.json</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/dist/d3-dispatch.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/d3-dispatch/dist/d3-dispatch.min.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/rollup.config.js</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-dispatch/src/index.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/d3-dispatch/yarn.lock</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/d3-drag/.eslintrc.json</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/dist/d3-drag.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/d3-drag/dist/d3-drag.min.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/index.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-drag/yarn.lock</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/d3-dsv/.eslintrc.json</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/dist/d3-dsv.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/d3-dsv/dist/d3-dsv.min.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/index.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-dsv/yarn.lock</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/d3-ease/.eslintrc.json</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/dist/d3-ease.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/d3-ease/dist/d3-ease.min.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/rollup.config.js</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/index.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-ease/yarn.lock</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/d3-fetch/.eslintrc.json</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/d3-fetch/LICENSE</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/d3-fetch/README.md</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/d3-fetch/dist/d3-fetch.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/d3-fetch/dist/d3-fetch.min.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/d3-fetch/package.json</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/d3-fetch/rollup.config.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/d3-fetch/src/blob.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/d3-fetch/src/buffer.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/d3-fetch/src/dsv.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/d3-fetch/src/image.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/d3-fetch/src/index.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/d3-fetch/src/json.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/d3-fetch/src/text.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/d3-fetch/src/xml.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/d3-fetch/yarn.lock</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/d3-force/.eslintrc.json</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/dist/d3-force.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/d3-force/dist/d3-force.min.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/index.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>
@@ -4028,12 +5455,12 @@
<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-force/yarn.lock</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/d3-format/.eslintrc.json</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/dist/d3-format.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/d3-format/dist/d3-format.min.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>
@@ -4089,27 +5516,29 @@
<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/rollup.config.js</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/formatTrim.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/index.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-format/yarn.lock</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/d3-geo/.eslintrc.json</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/dist/d3-geo.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/d3-geo/dist/d3-geo.min.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>
@@ -4132,6 +5561,7 @@
<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/index.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>
@@ -4155,6 +5585,7 @@
<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/equalEarth.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>
@@ -4169,20 +5600,14 @@
<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-geo/yarn.lock</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/d3-hierarchy/.eslintrc.json</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/dist/d3-hierarchy.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/d3-hierarchy/dist/d3-hierarchy.min.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/rollup.config.js</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>
@@ -4199,6 +5624,7 @@
<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/index.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>
@@ -4213,24 +5639,14 @@
<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-hierarchy/yarn.lock</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/d3-interpolate/.eslintrc.json</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/dist/d3-interpolate.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/d3-interpolate/dist/d3-interpolate.min.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/rollup.config.js</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>
@@ -4238,11 +5654,15 @@
<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/discrete.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/hue.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/d3-interpolate/src/index.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/piecewise.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>
@@ -4252,43 +5672,45 @@
<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-interpolate/yarn.lock</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/d3-path/.eslintrc.json</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/dist/d3-path.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/d3-path/dist/d3-path.min.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/rollup.config.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/d3-path/src/index.js</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-path/yarn.lock</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/d3-polygon/.eslintrc.json</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/dist/d3-polygon.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/d3-polygon/dist/d3-polygon.min.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/rollup.config.js</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/index.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-polygon/yarn.lock</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/d3-quadtree/.eslintrc.json</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/dist/d3-quadtree.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/d3-quadtree/dist/d3-quadtree.min.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/rollup.config.js</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/index.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>
@@ -4298,83 +5720,91 @@
<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-quadtree/yarn.lock</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/d3-random/.eslintrc.json</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/dist/d3-random.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/d3-random/dist/d3-random.min.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/rollup.config.js</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/index.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-random/yarn.lock</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/d3-scale-chromatic/.eslintrc.json</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/d3-scale-chromatic/LICENSE</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/d3-scale-chromatic/README.md</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/d3-scale-chromatic/dist/d3-scale-chromatic.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/d3-scale-chromatic/dist/d3-scale-chromatic.min.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/d3-scale-chromatic/package.json</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/d3-scale-chromatic/rollup.config.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/d3-scale-chromatic/src/categorical/Accent.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/d3-scale-chromatic/src/categorical/Dark2.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/d3-scale-chromatic/src/categorical/Paired.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/d3-scale-chromatic/src/categorical/Pastel1.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/d3-scale-chromatic/src/categorical/Pastel2.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/d3-scale-chromatic/src/categorical/Set1.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/d3-scale-chromatic/src/categorical/Set2.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/d3-scale-chromatic/src/categorical/Set3.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/d3-scale-chromatic/src/categorical/category10.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/d3-scale-chromatic/src/colors.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/d3-scale-chromatic/src/diverging/BrBG.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/d3-scale-chromatic/src/diverging/PRGn.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/d3-scale-chromatic/src/diverging/PiYG.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/d3-scale-chromatic/src/diverging/PuOr.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/d3-scale-chromatic/src/diverging/RdBu.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/d3-scale-chromatic/src/diverging/RdGy.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/d3-scale-chromatic/src/diverging/RdYlBu.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/d3-scale-chromatic/src/diverging/RdYlGn.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/d3-scale-chromatic/src/diverging/Spectral.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/d3-scale-chromatic/src/index.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/d3-scale-chromatic/src/ramp.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/d3-scale-chromatic/src/rampClosed.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/d3-scale-chromatic/src/scheme.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/d3-scale-chromatic/src/sequential-multi/BuGn.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/d3-scale-chromatic/src/sequential-multi/BuPu.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/d3-scale-chromatic/src/sequential-multi/GnBu.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/d3-scale-chromatic/src/sequential-multi/OrRd.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/d3-scale-chromatic/src/sequential-multi/PuBu.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/d3-scale-chromatic/src/sequential-multi/PuBuGn.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/d3-scale-chromatic/src/sequential-multi/PuRd.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/d3-scale-chromatic/src/sequential-multi/RdPu.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/d3-scale-chromatic/src/sequential-multi/YlGn.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/d3-scale-chromatic/src/sequential-multi/YlGnBu.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/d3-scale-chromatic/src/sequential-multi/YlOrBr.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/d3-scale-chromatic/src/sequential-multi/YlOrRd.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/d3-scale-chromatic/src/sequential-multi/cubehelix.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/d3-scale-chromatic/src/sequential-multi/rainbow.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/d3-scale-chromatic/src/sequential-multi/sinebow.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/d3-scale-chromatic/src/sequential-multi/viridis.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/d3-scale-chromatic/src/sequential-single/Blues.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/d3-scale-chromatic/src/sequential-single/Greens.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/d3-scale-chromatic/src/sequential-single/Greys.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/d3-scale-chromatic/src/sequential-single/Oranges.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/d3-scale-chromatic/src/sequential-single/Purples.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/d3-scale-chromatic/src/sequential-single/Reds.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/d3-scale-chromatic/yarn.lock</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/d3-scale/.eslintrc.json</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/dist/d3-scale.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/d3-scale/dist/d3-scale.min.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/rollup.config.js</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/diverging.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/index.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>
@@ -4383,24 +5813,23 @@
<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-scale/yarn.lock</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/d3-selection/.eslintrc.json</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/index.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>
@@ -4447,14 +5876,14 @@
<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-selection/yarn.lock</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/d3-shape/.eslintrc.json</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/dist/d3-shape.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/d3-shape/dist/d3-shape.min.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/rollup.config.js</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>
@@ -4478,6 +5907,7 @@
<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/index.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>
@@ -4505,12 +5935,13 @@
<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-shape/yarn.lock</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/d3-time-format/.eslintrc.json</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/dist/d3-time-format.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/d3-time-format/dist/d3-time-format.min.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/d3-time-format/locale/ar-EG.json</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>
@@ -4530,6 +5961,7 @@
<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/nb-NO.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>
@@ -4541,19 +5973,22 @@
<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/index.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-format/yarn.lock</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/d3-time/.eslintrc.json</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/dist/d3-time.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/d3-time/dist/d3-time.min.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/rollup.config.js</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/index.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>
@@ -4567,26 +6002,28 @@
<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-time/yarn.lock</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/d3-timer/.eslintrc.json</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/dist/d3-timer.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/d3-timer/dist/d3-timer.min.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/index.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-timer/yarn.lock</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/d3-transition/.eslintrc.json</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/dist/d3-transition.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/d3-transition/dist/d3-transition.min.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/rollup.config.js</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/index.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>
@@ -4611,15 +6048,14 @@
<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-transition/yarn.lock</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/d3-voronoi/.eslintrc.json</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/dist/d3-voronoi.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/d3-voronoi/dist/d3-voronoi.min.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/rollup.config.js</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>
@@ -4627,39 +6063,33 @@
<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/index.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-voronoi/yarn.lock</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/d3-zoom/.eslintrc.json</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/dist/d3-zoom.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/d3-zoom/dist/d3-zoom.min.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/index.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-zoom/yarn.lock</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/dist/d3.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/d3/dist/d3.min.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/d3/dist/d3.node.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/d3/dist/package.js</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>
@@ -4756,21 +6186,48 @@
<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>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/debug/.travis.yml</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/debug/CHANGELOG.md</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/debug/LICENSE</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/debug/Makefile</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/debug/README.md</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/debug/karma.conf.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/debug/node.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/debug/package.json</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/debug/src/browser.js</Path>
- <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/dashdash/CHANGES.md</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/dashdash/LICENSE.txt</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/dashdash/README.md</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/dashdash/etc/dashdash.bash_completion.in</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/dashdash/lib/dashdash.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/dashdash/node_modules/assert-plus/AUTHORS</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/dashdash/node_modules/assert-plus/CHANGES.md</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/dashdash/node_modules/assert-plus/README.md</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/dashdash/node_modules/assert-plus/assert.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/dashdash/node_modules/assert-plus/package.json</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/dashdash/package.json</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/data-urls/LICENSE.txt</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/data-urls/README.md</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/data-urls/lib/parser.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/data-urls/lib/utils.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/data-urls/node_modules/whatwg-url/LICENSE.txt</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/data-urls/node_modules/whatwg-url/README.md</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/data-urls/node_modules/whatwg-url/lib/URL-impl.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/data-urls/node_modules/whatwg-url/lib/URL.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/data-urls/node_modules/whatwg-url/lib/URLSearchParams-impl.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/data-urls/node_modules/whatwg-url/lib/URLSearchParams.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/data-urls/node_modules/whatwg-url/lib/infra.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/data-urls/node_modules/whatwg-url/lib/public-api.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/data-urls/node_modules/whatwg-url/lib/url-state-machine.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/data-urls/node_modules/whatwg-url/lib/urlencoded.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/data-urls/node_modules/whatwg-url/lib/utils.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/data-urls/node_modules/whatwg-url/package.json</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/data-urls/package.json</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/deep-is/.npmignore</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/deep-is/.travis.yml</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/deep-is/LICENSE</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/deep-is/README.markdown</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/deep-is/example/cmp.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/deep-is/index.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/deep-is/package.json</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/deep-is/test/NaN.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/deep-is/test/cmp.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/deep-is/test/neg-vs-pos-0.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/diacritics-map/LICENSE</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/diacritics-map/README.md</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/diacritics-map/index.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/diacritics-map/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>
@@ -4782,6 +6239,14 @@
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/domelementtype/index.js</Path>
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/domelementtype/package.json</Path>
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/domelementtype/readme.md</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/domexception/LICENSE.txt</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/domexception/README.md</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/domexception/lib/DOMException-impl.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/domexception/lib/DOMException.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/domexception/lib/legacy-error-codes.json</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/domexception/lib/public-api.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/domexception/lib/utils.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/domexception/package.json</Path>
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/domhandler/.travis.yml</Path>
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/domhandler/LICENSE</Path>
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/domhandler/index.js</Path>
@@ -4845,6 +6310,14 @@
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/easy-stack/licence.md</Path>
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/easy-stack/package.json</Path>
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/easy-stack/stack.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/ecc-jsbn/LICENSE</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/ecc-jsbn/README.md</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/ecc-jsbn/index.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/ecc-jsbn/lib/LICENSE-jsbn</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/ecc-jsbn/lib/ec.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/ecc-jsbn/lib/sec.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/ecc-jsbn/package.json</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/ecc-jsbn/test.js</Path>
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-config/index.js</Path>
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-config/license</Path>
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-config/package.json</Path>
@@ -4863,6 +6336,7 @@
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-gh-releases/test/app/main.js</Path>
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-gh-releases/test/app/package.json</Path>
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-gh-releases/test/test.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/electron-installer-redhat/node_modules</Path>
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/encoding/.npmignore</Path>
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/encoding/.travis.yml</Path>
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/encoding/LICENSE</Path>
@@ -4918,6 +6392,50 @@
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/escape-string-regexp/license</Path>
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/escape-string-regexp/package.json</Path>
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/escape-string-regexp/readme.md</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/escaper/LICENSE</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/escaper/README.md</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/escaper/README.ru.md</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/escaper/dist/escaper.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/escaper/dist/escaper.min.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/escaper/escaper.d.ts</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/escaper/externs.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/escaper/package.json</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/escaper/spec/index.html</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/escaper/spec/index_spec.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/escaper/spec/support/jasmine.json</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/escaper/spec/tests.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/escodegen/LICENSE.BSD</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/escodegen/README.md</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/escodegen/bin/escodegen.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/escodegen/bin/esgenerate.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/escodegen/escodegen.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/escodegen/node_modules/esprima/ChangeLog</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/escodegen/node_modules/esprima/LICENSE.BSD</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/escodegen/node_modules/esprima/README.md</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/escodegen/node_modules/esprima/bin/esparse.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/escodegen/node_modules/esprima/bin/esvalidate.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/escodegen/node_modules/esprima/dist/esprima.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/escodegen/node_modules/esprima/package.json</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/escodegen/package.json</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/esprima/ChangeLog</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/esprima/LICENSE.BSD</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/esprima/README.md</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/esprima/bin/esparse.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/esprima/bin/esvalidate.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/esprima/dist/esprima.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/esprima/package.json</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/estraverse/.jshintrc</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/estraverse/LICENSE.BSD</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/estraverse/estraverse.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/estraverse/gulpfile.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/estraverse/package.json</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/esutils/LICENSE.BSD</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/esutils/README.md</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/esutils/lib/ast.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/esutils/lib/code.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/esutils/lib/keyword.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/esutils/lib/utils.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/esutils/package.json</Path>
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/eve-raphael/.npmignore</Path>
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/eve-raphael/LICENSE</Path>
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/eve-raphael/README.md</Path>
@@ -4954,6 +6472,59 @@
<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/expand-range/LICENSE</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/expand-range/README.md</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/expand-range/index.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/expand-range/package.json</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/extend-shallow/LICENSE</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/extend-shallow/README.md</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/extend-shallow/index.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/extend-shallow/package.json</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/extend/.editorconfig</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/.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/extsprintf/.gitmodules</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/extsprintf/.npmignore</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/extsprintf/LICENSE</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/extsprintf/Makefile</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/extsprintf/Makefile.targ</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/extsprintf/README.md</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/extsprintf/jsl.node.conf</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/extsprintf/lib/extsprintf.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/extsprintf/package.json</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/fast-deep-equal/LICENSE</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/fast-deep-equal/README.md</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/fast-deep-equal/index.d.ts</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/fast-deep-equal/index.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/fast-deep-equal/package.json</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/fast-json-stable-stringify/.eslintrc.yml</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/fast-json-stable-stringify/.npmignore</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/fast-json-stable-stringify/.travis.yml</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/fast-json-stable-stringify/LICENSE</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/fast-json-stable-stringify/README.md</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/fast-json-stable-stringify/benchmark/index.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/fast-json-stable-stringify/benchmark/test.json</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/fast-json-stable-stringify/example/key_cmp.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/fast-json-stable-stringify/example/nested.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/fast-json-stable-stringify/example/str.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/fast-json-stable-stringify/example/value_cmp.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/fast-json-stable-stringify/index.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/fast-json-stable-stringify/package.json</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/fast-json-stable-stringify/test/cmp.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/fast-json-stable-stringify/test/nested.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/fast-json-stable-stringify/test/str.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/fast-json-stable-stringify/test/to-json.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/fast-levenshtein/LICENSE.md</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/fast-levenshtein/README.md</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/fast-levenshtein/levenshtein.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/fast-levenshtein/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>
@@ -5163,6 +6734,16 @@
<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-uri-to-path/.npmignore</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/file-uri-to-path/.travis.yml</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/file-uri-to-path/History.md</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/file-uri-to-path/LICENSE</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/file-uri-to-path/README.md</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/file-uri-to-path/index.d.ts</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/file-uri-to-path/index.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/file-uri-to-path/package.json</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/file-uri-to-path/test/test.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/file-uri-to-path/test/tests.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>
@@ -5175,6 +6756,10 @@
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/filenamify/license</Path>
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/filenamify/package.json</Path>
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/filenamify/readme.md</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/fill-range/LICENSE</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/fill-range/README.md</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/fill-range/index.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/fill-range/package.json</Path>
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/find-up/index.js</Path>
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/find-up/license</Path>
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/find-up/package.json</Path>
@@ -5270,6 +6855,14 @@
<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/for-in/LICENSE</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/for-in/README.md</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/for-in/index.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/for-in/package.json</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/forever-agent/LICENSE</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/forever-agent/README.md</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/forever-agent/index.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/forever-agent/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>
@@ -5341,6 +6934,17 @@
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/fs.realpath/index.js</Path>
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/fs.realpath/old.js</Path>
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/fs.realpath/package.json</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/getpass/.npmignore</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/getpass/.travis.yml</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/getpass/LICENSE</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/getpass/README.md</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/getpass/lib/index.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/getpass/node_modules/assert-plus/AUTHORS</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/getpass/node_modules/assert-plus/CHANGES.md</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/getpass/node_modules/assert-plus/README.md</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/getpass/node_modules/assert-plus/assert.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/getpass/node_modules/assert-plus/package.json</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/getpass/package.json</Path>
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/glob/LICENSE</Path>
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/glob/README.md</Path>
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/glob/changelog.md</Path>
@@ -5354,7 +6958,7 @@
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/got/readme.md</Path>
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/graceful-fs/LICENSE</Path>
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/graceful-fs/README.md</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/graceful-fs/fs.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/graceful-fs/clone.js</Path>
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/graceful-fs/graceful-fs.js</Path>
<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>
@@ -5392,6 +6996,34 @@
<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/gray-matter/LICENSE</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/gray-matter/README.md</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/gray-matter/gray-matter.d.ts</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/gray-matter/index.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/gray-matter/lib/parsers.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/gray-matter/package.json</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/har-schema/LICENSE</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/har-schema/README.md</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/har-schema/lib/afterRequest.json</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/har-schema/lib/beforeRequest.json</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/har-schema/lib/browser.json</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/har-schema/lib/cache.json</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/har-schema/lib/content.json</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/har-schema/lib/cookie.json</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/har-schema/lib/creator.json</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/har-schema/lib/entry.json</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/har-schema/lib/har.json</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/har-schema/lib/header.json</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/har-schema/lib/index.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/har-schema/lib/log.json</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/har-schema/lib/page.json</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/har-schema/lib/pageTimings.json</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/har-schema/lib/postData.json</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/har-schema/lib/query.json</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/har-schema/lib/request.json</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/har-schema/lib/response.json</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/har-schema/lib/timings.json</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/har-schema/package.json</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>
@@ -5410,6 +7042,10 @@
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/hoist-non-react-statics/index.d.ts</Path>
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/hoist-non-react-statics/package.json</Path>
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/hoist-non-react-statics/src/index.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/html-encoding-sniffer/LICENSE.txt</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/html-encoding-sniffer/README.md</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/html-encoding-sniffer/lib/html-encoding-sniffer.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/html-encoding-sniffer/package.json</Path>
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/htmlparser2/LICENSE</Path>
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/htmlparser2/README.md</Path>
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/htmlparser2/lib/CollectingHandler.js</Path>
@@ -5420,8 +7056,31 @@
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/htmlparser2/lib/Tokenizer.js</Path>
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/htmlparser2/lib/WritableStream.js</Path>
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/htmlparser2/lib/index.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/htmlparser2/node_modules/readable-stream/CONTRIBUTING.md</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/htmlparser2/node_modules/readable-stream/GOVERNANCE.md</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/htmlparser2/node_modules/readable-stream/LICENSE</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/htmlparser2/node_modules/readable-stream/README.md</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/htmlparser2/node_modules/readable-stream/errors-browser.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/htmlparser2/node_modules/readable-stream/errors.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/htmlparser2/node_modules/readable-stream/experimentalWarning.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/htmlparser2/node_modules/readable-stream/lib/_stream_duplex.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/htmlparser2/node_modules/readable-stream/lib/_stream_passthrough.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/htmlparser2/node_modules/readable-stream/lib/_stream_readable.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/htmlparser2/node_modules/readable-stream/lib/_stream_transform.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/htmlparser2/node_modules/readable-stream/lib/_stream_writable.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/htmlparser2/node_modules/readable-stream/lib/internal/streams/async_iterator.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/htmlparser2/node_modules/readable-stream/lib/internal/streams/buffer_list.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/htmlparser2/node_modules/readable-stream/lib/internal/streams/destroy.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/htmlparser2/node_modules/readable-stream/lib/internal/streams/end-of-stream.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/htmlparser2/node_modules/readable-stream/lib/internal/streams/pipeline.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/htmlparser2/node_modules/readable-stream/lib/internal/streams/state.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/htmlparser2/node_modules/readable-stream/lib/internal/streams/stream-browser.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/htmlparser2/node_modules/readable-stream/lib/internal/streams/stream.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/htmlparser2/node_modules/readable-stream/package.json</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/htmlparser2/node_modules/readable-stream/readable-browser.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/htmlparser2/node_modules/readable-stream/readable.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/htmlparser2/node_modules/readable-stream/yarn.lock</Path>
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/htmlparser2/package.json</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/i18n-2/.npmignore</Path>
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/i18n-2/LICENSE</Path>
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/i18n-2/README.md</Path>
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/i18n-2/i18n.js</Path>
@@ -5433,11 +7092,24 @@
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/i18n-2/locales/en.js</Path>
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/i18n-2/locales/en.json</Path>
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/i18n-2/locales/en.yml</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/i18n-2/node_modules/debug/CHANGELOG.md</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/i18n-2/node_modules/debug/LICENSE</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/i18n-2/node_modules/debug/README.md</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/i18n-2/node_modules/debug/dist/debug.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/i18n-2/node_modules/debug/node.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/i18n-2/node_modules/debug/package.json</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/i18n-2/node_modules/debug/src/browser.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/i18n-2/node_modules/debug/src/common.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/i18n-2/node_modules/debug/src/index.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/i18n-2/node_modules/debug/src/node.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/i18n-2/node_modules/ms/index.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/i18n-2/node_modules/ms/license.md</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/i18n-2/node_modules/ms/package.json</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/i18n-2/node_modules/ms/readme.md</Path>
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/i18n-2/package.json</Path>
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/i18n-2/test/i18n.base.js</Path>
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/i18n-2/test/i18n.configure.js</Path>
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/i18n-2/test/i18n.test.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/iconv-lite/.travis.yml</Path>
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/iconv-lite/Changelog.md</Path>
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/iconv-lite/LICENSE</Path>
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/iconv-lite/README.md</Path>
@@ -5504,14 +7176,40 @@
<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-extendable/LICENSE</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/is-extendable/README.md</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/is-extendable/index.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/is-extendable/package.json</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/is-number/LICENSE</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/is-number/README.md</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/is-number/index.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/is-number/package.json</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>
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/is-obj/readme.md</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/is-plain-object/LICENSE</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/is-plain-object/README.md</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/is-plain-object/index.d.ts</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/is-plain-object/index.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/is-plain-object/node_modules/isobject/LICENSE</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/is-plain-object/node_modules/isobject/README.md</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/is-plain-object/node_modules/isobject/index.d.ts</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/is-plain-object/node_modules/isobject/index.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/is-plain-object/node_modules/isobject/package.json</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/is-plain-object/package.json</Path>
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/is-redirect/index.js</Path>
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/is-redirect/license</Path>
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/is-redirect/package.json</Path>
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/is-redirect/readme.md</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/is-regexp/index.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/is-regexp/package.json</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/is-regexp/readme.md</Path>
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/is-retry-allowed/index.js</Path>
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/is-retry-allowed/license</Path>
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/is-retry-allowed/package.json</Path>
@@ -5520,6 +7218,11 @@
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/is-stream/license</Path>
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/is-stream/package.json</Path>
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/is-stream/readme.md</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/is-typedarray/LICENSE.md</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/is-typedarray/README.md</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/is-typedarray/index.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/is-typedarray/package.json</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/is-typedarray/test.js</Path>
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/isarray/.npmignore</Path>
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/isarray/.travis.yml</Path>
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/isarray/Makefile</Path>
@@ -5528,6 +7231,10 @@
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/isarray/index.js</Path>
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/isarray/package.json</Path>
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/isarray/test.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/isobject/LICENSE</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/isobject/README.md</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/isobject/index.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/isobject/package.json</Path>
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/isomorphic-fetch/.editorconfig</Path>
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/isomorphic-fetch/.jshintrc</Path>
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/isomorphic-fetch/.npmignore</Path>
@@ -5540,6 +7247,14 @@
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/isomorphic-fetch/fetch-npm-node.js</Path>
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/isomorphic-fetch/package.json</Path>
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/isomorphic-fetch/test/api.test.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/isstream/.jshintrc</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/isstream/.npmignore</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/isstream/.travis.yml</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/isstream/LICENSE.md</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/isstream/README.md</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/isstream/isstream.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/isstream/package.json</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/isstream/test.js</Path>
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/js-message/Message.js</Path>
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/js-message/README.md</Path>
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/js-message/js-message-vanilla.js</Path>
@@ -5649,11 +7364,115 @@
<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/js-yaml/CHANGELOG.md</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/js-yaml/LICENSE</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/js-yaml/README.md</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/js-yaml/bin/js-yaml.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/js-yaml/dist/js-yaml.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/js-yaml/dist/js-yaml.min.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/js-yaml/index.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/js-yaml/lib/js-yaml.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/js-yaml/lib/js-yaml/common.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/js-yaml/lib/js-yaml/dumper.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/js-yaml/lib/js-yaml/exception.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/js-yaml/lib/js-yaml/loader.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/js-yaml/lib/js-yaml/mark.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/js-yaml/lib/js-yaml/schema.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/js-yaml/lib/js-yaml/schema/core.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/js-yaml/lib/js-yaml/schema/default_full.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/js-yaml/lib/js-yaml/schema/default_safe.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/js-yaml/lib/js-yaml/schema/failsafe.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/js-yaml/lib/js-yaml/schema/json.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/js-yaml/lib/js-yaml/type.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/js-yaml/lib/js-yaml/type/binary.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/js-yaml/lib/js-yaml/type/bool.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/js-yaml/lib/js-yaml/type/float.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/js-yaml/lib/js-yaml/type/int.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/js-yaml/lib/js-yaml/type/js/function.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/js-yaml/lib/js-yaml/type/js/regexp.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/js-yaml/lib/js-yaml/type/js/undefined.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/js-yaml/lib/js-yaml/type/map.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/js-yaml/lib/js-yaml/type/merge.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/js-yaml/lib/js-yaml/type/null.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/js-yaml/lib/js-yaml/type/omap.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/js-yaml/lib/js-yaml/type/pairs.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/js-yaml/lib/js-yaml/type/seq.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/js-yaml/lib/js-yaml/type/set.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/js-yaml/lib/js-yaml/type/str.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/js-yaml/lib/js-yaml/type/timestamp.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/js-yaml/package.json</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/jsbn/.npmignore</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/jsbn/LICENSE</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/jsbn/README.md</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/jsbn/example.html</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/jsbn/example.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/jsbn/index.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/jsbn/package.json</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/json-schema-traverse/.eslintrc.yml</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/json-schema-traverse/.travis.yml</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/json-schema-traverse/LICENSE</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/json-schema-traverse/README.md</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/json-schema-traverse/index.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/json-schema-traverse/package.json</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/json-schema-traverse/spec/.eslintrc.yml</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/json-schema-traverse/spec/fixtures/schema.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/json-schema-traverse/spec/index.spec.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/json-schema/README.md</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/json-schema/draft-00/hyper-schema</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/json-schema/draft-00/json-ref</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/json-schema/draft-00/links</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/json-schema/draft-00/schema</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/json-schema/draft-01/hyper-schema</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/json-schema/draft-01/json-ref</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/json-schema/draft-01/links</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/json-schema/draft-01/schema</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/json-schema/draft-02/hyper-schema</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/json-schema/draft-02/json-ref</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/json-schema/draft-02/links</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/json-schema/draft-02/schema</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/json-schema/draft-03/examples/address</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/json-schema/draft-03/examples/calendar</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/json-schema/draft-03/examples/card</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/json-schema/draft-03/examples/geo</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/json-schema/draft-03/examples/interfaces</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/json-schema/draft-03/hyper-schema</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/json-schema/draft-03/json-ref</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/json-schema/draft-03/links</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/json-schema/draft-03/schema</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/json-schema/draft-04/hyper-schema</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/json-schema/draft-04/links</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/json-schema/draft-04/schema</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/json-schema/draft-zyp-json-schema-03.xml</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/json-schema/draft-zyp-json-schema-04.xml</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/json-schema/lib/links.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/json-schema/lib/validate.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/json-schema/package.json</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/json-schema/test/tests.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/json-stringify-safe/.npmignore</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/json-stringify-safe/CHANGELOG.md</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/json-stringify-safe/LICENSE</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/json-stringify-safe/Makefile</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/json-stringify-safe/README.md</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/json-stringify-safe/package.json</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/json-stringify-safe/stringify.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/json-stringify-safe/test/mocha.opts</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/json-stringify-safe/test/stringify_test.js</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/jsprim/CHANGES.md</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/jsprim/CONTRIBUTING.md</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/jsprim/LICENSE</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/jsprim/README.md</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/jsprim/lib/jsprim.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/jsprim/node_modules/assert-plus/AUTHORS</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/jsprim/node_modules/assert-plus/CHANGES.md</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/jsprim/node_modules/assert-plus/README.md</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/jsprim/node_modules/assert-plus/assert.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/jsprim/node_modules/assert-plus/package.json</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/jsprim/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>
@@ -5803,12 +7622,46 @@
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/katex/src/unicodeSymbols.js</Path>
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/katex/src/units.js</Path>
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/katex/src/utils.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/kind-of/LICENSE</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/kind-of/README.md</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/kind-of/index.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/kind-of/package.json</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/lazy-cache/LICENSE</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/lazy-cache/README.md</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/lazy-cache/index.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/lazy-cache/package.json</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/left-pad/.travis.yml</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/left-pad/COPYING</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/left-pad/README.md</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/left-pad/index.d.ts</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/left-pad/index.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/left-pad/package.json</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/left-pad/perf/O(n).js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/left-pad/perf/es6Repeat.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/left-pad/perf/perf.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/left-pad/test.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/levn/LICENSE</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/levn/README.md</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/levn/lib/cast.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/levn/lib/coerce.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/levn/lib/index.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/levn/lib/parse-string.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/levn/lib/parse.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/levn/package.json</Path>
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/linkify-it/CHANGELOG.md</Path>
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/linkify-it/LICENSE</Path>
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/linkify-it/README.md</Path>
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/linkify-it/index.js</Path>
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/linkify-it/lib/re.js</Path>
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/linkify-it/package.json</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/list-item/LICENSE</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/list-item/README.md</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/list-item/index.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/list-item/package.json</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/locate-path/index.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/locate-path/license</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/locate-path/package.json</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/locate-path/readme.md</Path>
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/lodash-es/LICENSE</Path>
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/lodash-es/README.md</Path>
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/lodash-es/_DataView.js</Path>
@@ -6488,6 +8341,10 @@
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/lodash.mergewith/README.md</Path>
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/lodash.mergewith/index.js</Path>
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/lodash.mergewith/package.json</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/lodash.sortby/LICENSE</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/lodash.sortby/README.md</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/lodash.sortby/index.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/lodash.sortby/package.json</Path>
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/lodash/LICENSE</Path>
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/lodash/README.md</Path>
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/lodash/_DataView.js</Path>
@@ -7549,6 +9406,18 @@
<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/make-dir/index.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/make-dir/license</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/make-dir/package.json</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/make-dir/readme.md</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/markdown-it-abbr/CHANGELOG.md</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/markdown-it-abbr/LICENSE</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/markdown-it-abbr/README.md</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/markdown-it-abbr/bower.json</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/markdown-it-abbr/dist/markdown-it-abbr.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/markdown-it-abbr/dist/markdown-it-abbr.min.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/markdown-it-abbr/index.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/markdown-it-abbr/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>
@@ -7705,13 +9574,8 @@
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/markdown-it-multimd-table/test/fixtures/notes.txt</Path>
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/markdown-it-multimd-table/test/fixtures/requirements.txt</Path>
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/markdown-it-multimd-table/test/test.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/markdown-it-named-headers/README.md</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/markdown-it-named-headers/UNLICENSE</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/markdown-it-named-headers/index.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/markdown-it-named-headers/package.json</Path>
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/markdown-it-plantuml/LICENSE</Path>
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/markdown-it-plantuml/README.md</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/markdown-it-plantuml/coverage/lcov.info</Path>
<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>
@@ -7725,6 +9589,22 @@
<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-sub/CHANGELOG.md</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/markdown-it-sub/LICENSE</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/markdown-it-sub/README.md</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/markdown-it-sub/bower.json</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/markdown-it-sub/dist/markdown-it-sub.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/markdown-it-sub/dist/markdown-it-sub.min.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/markdown-it-sub/index.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/markdown-it-sub/package.json</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/markdown-it-sup/CHANGELOG.md</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/markdown-it-sup/LICENSE</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/markdown-it-sup/README.md</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/markdown-it-sup/bower.json</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/markdown-it-sup/dist/markdown-it-sup.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/markdown-it-sup/dist/markdown-it-sup.min.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/markdown-it-sup/index.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/markdown-it-sup/package.json</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>
@@ -7784,12 +9664,50 @@
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/markdown-it/lib/rules_inline/text_collapse.js</Path>
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/markdown-it/lib/token.js</Path>
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/markdown-it/package.json</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/markdown-link/LICENSE</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/markdown-link/README.md</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/markdown-link/index.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/markdown-link/package.json</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/markdown-toc/LICENSE</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/markdown-toc/README.md</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/markdown-toc/cli.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/markdown-toc/index.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/markdown-toc/lib/insert.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/markdown-toc/lib/utils.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/markdown-toc/node_modules/minimist/.travis.yml</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/markdown-toc/node_modules/minimist/LICENSE</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/markdown-toc/node_modules/minimist/example/parse.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/markdown-toc/node_modules/minimist/index.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/markdown-toc/node_modules/minimist/package.json</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/markdown-toc/node_modules/minimist/readme.markdown</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/markdown-toc/node_modules/minimist/test/all_bool.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/markdown-toc/node_modules/minimist/test/bool.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/markdown-toc/node_modules/minimist/test/dash.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/markdown-toc/node_modules/minimist/test/default_bool.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/markdown-toc/node_modules/minimist/test/dotted.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/markdown-toc/node_modules/minimist/test/kv_short.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/markdown-toc/node_modules/minimist/test/long.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/markdown-toc/node_modules/minimist/test/num.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/markdown-toc/node_modules/minimist/test/parse.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/markdown-toc/node_modules/minimist/test/parse_modified.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/markdown-toc/node_modules/minimist/test/short.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/markdown-toc/node_modules/minimist/test/stop_early.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/markdown-toc/node_modules/minimist/test/unknown.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/markdown-toc/node_modules/minimist/test/whitespace.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/markdown-toc/package.json</Path>
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/match-at/LICENSE</Path>
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/match-at/README.md</Path>
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/match-at/lib/__tests__/matchAt-test.js</Path>
<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/math-random/.npmignore</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/math-random/.travis.yml</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/math-random/browser.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/math-random/node.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/math-random/package.json</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/math-random/readme.md</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/math-random/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>
@@ -7879,6 +9797,15 @@
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/minimist/test/parse_modified.js</Path>
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/minimist/test/short.js</Path>
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/minimist/test/whitespace.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/mixin-deep/LICENSE</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/mixin-deep/README.md</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/mixin-deep/index.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/mixin-deep/node_modules/is-extendable/LICENSE</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/mixin-deep/node_modules/is-extendable/README.md</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/mixin-deep/node_modules/is-extendable/index.d.ts</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/mixin-deep/node_modules/is-extendable/index.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/mixin-deep/node_modules/is-extendable/package.json</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/mixin-deep/package.json</Path>
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/mkdirp/.travis.yml</Path>
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/mkdirp/LICENSE</Path>
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/mkdirp/bin/cmd.js</Path>
@@ -7970,6 +9897,7 @@
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/moment/locale/km.js</Path>
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/moment/locale/kn.js</Path>
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/moment/locale/ko.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/moment/locale/ku.js</Path>
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/moment/locale/ky.js</Path>
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/moment/locale/lb.js</Path>
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/moment/locale/lo.js</Path>
@@ -8206,6 +10134,7 @@
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/moment/src/locale/km.js</Path>
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/moment/src/locale/kn.js</Path>
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/moment/src/locale/ko.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/moment/src/locale/ku.js</Path>
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/moment/src/locale/ky.js</Path>
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/moment/src/locale/lb.js</Path>
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/moment/src/locale/lo.js</Path>
@@ -8306,10 +10235,6 @@
<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>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/ms/readme.md</Path>
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/node-fetch/.npmignore</Path>
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/node-fetch/.travis.yml</Path>
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/node-fetch/CHANGELOG.md</Path>
@@ -8399,10 +10324,27 @@
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/number-is-nan/license</Path>
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/number-is-nan/package.json</Path>
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/number-is-nan/readme.md</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/nwsapi/LICENSE</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/nwsapi/README.md</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/nwsapi/dist/lint.log</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/nwsapi/dist/nwsapi.min.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/nwsapi/package.json</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/nwsapi/src/modules/nwsapi-jquery.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/nwsapi/src/modules/nwsapi-traversal.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/nwsapi/src/nwsapi.js</Path>
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/object-assign/index.js</Path>
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/object-assign/license</Path>
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/object-assign/package.json</Path>
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/object-assign/readme.md</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/object.pick/LICENSE</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/object.pick/README.md</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/object.pick/index.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/object.pick/node_modules/isobject/LICENSE</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/object.pick/node_modules/isobject/README.md</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/object.pick/node_modules/isobject/index.d.ts</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/object.pick/node_modules/isobject/index.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/object.pick/node_modules/isobject/package.json</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/object.pick/package.json</Path>
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/once/LICENSE</Path>
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/once/README.md</Path>
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/once/once.js</Path>
@@ -8433,12 +10375,70 @@
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/optimist/test/parse.js</Path>
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/optimist/test/short.js</Path>
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/optimist/test/usage.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/optionator/CHANGELOG.md</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/optionator/LICENSE</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/optionator/README.md</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/optionator/lib/help.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/optionator/lib/index.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/optionator/lib/util.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/optionator/node_modules/wordwrap/LICENSE</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/optionator/node_modules/wordwrap/README.markdown</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/optionator/node_modules/wordwrap/example/center.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/optionator/node_modules/wordwrap/example/meat.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/optionator/node_modules/wordwrap/index.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/optionator/node_modules/wordwrap/package.json</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/optionator/node_modules/wordwrap/test/break.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/optionator/node_modules/wordwrap/test/idleness.txt</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/optionator/node_modules/wordwrap/test/wrap.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/optionator/package.json</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/p-limit/index.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/p-limit/license</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/p-limit/package.json</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/p-limit/readme.md</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/p-locate/index.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/p-locate/license</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/p-locate/package.json</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/p-locate/readme.md</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/p-try/index.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/p-try/license</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/p-try/package.json</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/p-try/readme.md</Path>
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/parse-json/index.js</Path>
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/parse-json/license</Path>
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/parse-json/package.json</Path>
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/parse-json/readme.md</Path>
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/parse-json/vendor/parse.js</Path>
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/parse-json/vendor/unicode.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/parse5/LICENSE</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/parse5/README.md</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/parse5/lib/common/doctype.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/parse5/lib/common/foreign_content.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/parse5/lib/common/html.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/parse5/lib/common/unicode.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/parse5/lib/extensions/location_info/open_element_stack_mixin.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/parse5/lib/extensions/location_info/parser_mixin.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/parse5/lib/extensions/location_info/tokenizer_mixin.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/parse5/lib/extensions/position_tracking/preprocessor_mixin.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/parse5/lib/index.d.ts</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/parse5/lib/index.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/parse5/lib/parser/formatting_element_list.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/parse5/lib/parser/index.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/parse5/lib/parser/open_element_stack.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/parse5/lib/parser/parser_stream.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/parse5/lib/parser/plain_text_conversion_stream.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/parse5/lib/sax/dev_null_stream.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/parse5/lib/sax/index.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/parse5/lib/sax/parser_feedback_simulator.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/parse5/lib/serializer/index.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/parse5/lib/serializer/serializer_stream.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/parse5/lib/tokenizer/index.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/parse5/lib/tokenizer/named_entity_data.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/parse5/lib/tokenizer/preprocessor.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/parse5/lib/tree_adapters/default.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/parse5/lib/tree_adapters/htmlparser2.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/parse5/lib/utils/merge_options.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/parse5/lib/utils/mixin.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/parse5/package.json</Path>
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/path-exists/index.js</Path>
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/path-exists/license</Path>
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/path-exists/package.json</Path>
@@ -8447,6 +10447,27 @@
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/path-is-absolute/license</Path>
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/path-is-absolute/package.json</Path>
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/path-is-absolute/readme.md</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/performance-now/.npmignore</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/performance-now/.tm_properties</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/performance-now/.travis.yml</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/performance-now/README.md</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/performance-now/lib/performance-now.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/performance-now/lib/performance-now.js.map</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/performance-now/license.txt</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/performance-now/package.json</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/performance-now/src/index.d.ts</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/performance-now/src/performance-now.coffee</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/performance-now/test/mocha.opts</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/performance-now/test/performance-now.coffee</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/performance-now/test/scripts.coffee</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/performance-now/test/scripts/delayed-call.coffee</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/performance-now/test/scripts/delayed-require.coffee</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/performance-now/test/scripts/difference.coffee</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/performance-now/test/scripts/initial-value.coffee</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/pify/index.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/pify/license</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/pify/package.json</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/pify/readme.md</Path>
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/pinkie-promise/index.js</Path>
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/pinkie-promise/license</Path>
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/pinkie-promise/package.json</Path>
@@ -8459,17 +10480,60 @@
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/pkg-up/license</Path>
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/pkg-up/package.json</Path>
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/pkg-up/readme.md</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/pn/.travis.yml</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/pn/README.md</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/pn/_promise.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/pn/_promisify.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/pn/assert.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/pn/async_hooks.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/pn/buffer.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/pn/child_process.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/pn/cluster.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/pn/console.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/pn/crypto.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/pn/dgram.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/pn/dns.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/pn/domain.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/pn/events.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/pn/fs.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/pn/http.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/pn/http2.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/pn/https.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/pn/inspector.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/pn/net.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/pn/os.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/pn/package.json</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/pn/path.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/pn/perf_hooks.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/pn/process.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/pn/punycode.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/pn/querystring.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/pn/readline.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/pn/repl.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/pn/scripts/generate.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/pn/stream.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/pn/string_decoder.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/pn/test/cp.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/pn/test/custom.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/pn/test/fs.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/pn/test/load.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/pn/test/timers.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/pn/timers.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/pn/tls.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/pn/tty.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/pn/url.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/pn/util.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/pn/v8.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/pn/vm.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/pn/zlib.js</Path>
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/postcss/CHANGELOG.md</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/postcss/CONTRIBUTING.md</Path>
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/postcss/LICENSE</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/postcss/README-cn.md</Path>
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/postcss/README.md</Path>
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/postcss/docs/architecture.md</Path>
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/postcss/docs/guidelines/plugin.md</Path>
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/postcss/docs/guidelines/runner.md</Path>
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/postcss/docs/source-maps.md</Path>
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/postcss/docs/syntax.md</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/postcss/gulpfile.js</Path>
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/postcss/lib/at-rule.js</Path>
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/postcss/lib/comment.js</Path>
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/postcss/lib/container.js</Path>
@@ -8496,7 +10560,47 @@
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/postcss/lib/vendor.js</Path>
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/postcss/lib/warn-once.js</Path>
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/postcss/lib/warning.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/postcss/node_modules/ansi-styles/index.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/postcss/node_modules/ansi-styles/license</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/postcss/node_modules/ansi-styles/package.json</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/postcss/node_modules/ansi-styles/readme.md</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/postcss/node_modules/chalk/index.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/postcss/node_modules/chalk/index.js.flow</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/postcss/node_modules/chalk/license</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/postcss/node_modules/chalk/package.json</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/postcss/node_modules/chalk/readme.md</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/postcss/node_modules/chalk/templates.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/postcss/node_modules/chalk/types/index.d.ts</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/postcss/node_modules/color-convert/CHANGELOG.md</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/postcss/node_modules/color-convert/LICENSE</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/postcss/node_modules/color-convert/README.md</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/postcss/node_modules/color-convert/conversions.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/postcss/node_modules/color-convert/index.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/postcss/node_modules/color-convert/package.json</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/postcss/node_modules/color-convert/route.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/postcss/node_modules/color-name/.eslintrc.json</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/postcss/node_modules/color-name/.npmignore</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/postcss/node_modules/color-name/LICENSE</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/postcss/node_modules/color-name/README.md</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/postcss/node_modules/color-name/index.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/postcss/node_modules/color-name/package.json</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/postcss/node_modules/color-name/test.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/postcss/node_modules/supports-color/browser.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/postcss/node_modules/supports-color/index.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/postcss/node_modules/supports-color/license</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/postcss/node_modules/supports-color/package.json</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/postcss/node_modules/supports-color/readme.md</Path>
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/postcss/package.json</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/prelude-ls/CHANGELOG.md</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/prelude-ls/LICENSE</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/prelude-ls/README.md</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/prelude-ls/lib/Func.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/prelude-ls/lib/List.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/prelude-ls/lib/Num.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/prelude-ls/lib/Obj.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/prelude-ls/lib/Str.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/prelude-ls/lib/index.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/prelude-ls/package.json</Path>
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/prepend-http/index.js</Path>
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/prepend-http/license</Path>
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/prepend-http/package.json</Path>
@@ -8560,6 +10664,36 @@
<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/psl/.eslintignore</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/psl/.eslintrc</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/psl/.travis.yml</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/psl/LICENSE</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/psl/README.md</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/psl/data/rules.json</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/psl/dist/psl.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/psl/dist/psl.min.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/psl/index.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/psl/karma.conf.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/psl/package.json</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/psl/yarn.lock</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/punycode/LICENSE-MIT.txt</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/punycode/README.md</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/punycode/package.json</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/punycode/punycode.es6.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/punycode/punycode.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/randomatic/LICENSE</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/randomatic/README.md</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/randomatic/index.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/randomatic/node_modules/is-number/LICENSE</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/randomatic/node_modules/is-number/README.md</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/randomatic/node_modules/is-number/index.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/randomatic/node_modules/is-number/package.json</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/randomatic/node_modules/kind-of/CHANGELOG.md</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/randomatic/node_modules/kind-of/LICENSE</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/randomatic/node_modules/kind-of/README.md</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/randomatic/node_modules/kind-of/index.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/randomatic/node_modules/kind-of/package.json</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/randomatic/package.json</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>
@@ -8584,6 +10718,25 @@
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/raphael/raphael.no-deps.min.js</Path>
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/raphael/webpack.config.js</Path>
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/raphael/yarn.lock</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/react-autosuggest/LICENSE</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/react-autosuggest/README.md</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/react-autosuggest/dist/Autosuggest.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/react-autosuggest/dist/index.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/react-autosuggest/dist/standalone/autosuggest.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/react-autosuggest/dist/standalone/autosuggest.min.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/react-autosuggest/dist/theme.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/react-autosuggest/package.json</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/react-autowhatever/LICENSE</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/react-autowhatever/README.md</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/react-autowhatever/dist/Autowhatever.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/react-autowhatever/dist/Item.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/react-autowhatever/dist/ItemsList.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/react-autowhatever/dist/SectionTitle.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/react-autowhatever/dist/compareObjects.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/react-autowhatever/dist/index.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/react-autowhatever/dist/standalone/autowhatever.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/react-autowhatever/dist/standalone/autowhatever.min.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/react-autowhatever/package.json</Path>
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/react-codemirror/.editorconfig</Path>
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/react-codemirror/.npmignore</Path>
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/react-codemirror/LICENSE</Path>
@@ -8826,6 +10979,25 @@
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/react-sortable-hoc/examples/virtual-list.js</Path>
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/react-sortable-hoc/examples/virtual-table-columns.js</Path>
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/react-sortable-hoc/package.json</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/react-themeable/.editorconfig</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/react-themeable/.npmignore</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/react-themeable/.travis.yml</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/react-themeable/README.md</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/react-themeable/coverage/coverage.json</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/react-themeable/coverage/lcov-report/base.css</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/react-themeable/coverage/lcov-report/index.html</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/react-themeable/coverage/lcov-report/prettify.css</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/react-themeable/coverage/lcov-report/prettify.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/react-themeable/coverage/lcov-report/sort-arrow-sprite.png</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/react-themeable/coverage/lcov-report/sorter.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/react-themeable/coverage/lcov.info</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/react-themeable/dist/index.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/react-themeable/node_modules/object-assign/index.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/react-themeable/node_modules/object-assign/license</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/react-themeable/node_modules/object-assign/package.json</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/react-themeable/node_modules/object-assign/readme.md</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/react-themeable/package.json</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/react-themeable/test/index.js</Path>
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/react/LICENSE</Path>
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/react/README.md</Path>
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/react/dist/react-with-addons.js</Path>
@@ -8947,6 +11119,221 @@
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/regenerator-runtime/path.js</Path>
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/regenerator-runtime/runtime-module.js</Path>
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/regenerator-runtime/runtime.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/remarkable/.editorconfig</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/remarkable/.eslintignore</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/remarkable/.eslintrc.json</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/remarkable/.github/contributing.md</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/remarkable/.nojekyll</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/remarkable/.npmignore</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/remarkable/.travis.yml</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/remarkable/CHANGELOG.md</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/remarkable/LICENSE</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/remarkable/Makefile</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/remarkable/README.md</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/remarkable/benchmark/fixtures/block-bq-flat.md</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/remarkable/benchmark/fixtures/block-bq-nested.md</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/remarkable/benchmark/fixtures/block-code.md</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/remarkable/benchmark/fixtures/block-fences.md</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/remarkable/benchmark/fixtures/block-heading.md</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/remarkable/benchmark/fixtures/block-hr.md</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/remarkable/benchmark/fixtures/block-html.md</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/remarkable/benchmark/fixtures/block-lheading.md</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/remarkable/benchmark/fixtures/block-list-flat.md</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/remarkable/benchmark/fixtures/block-list-nested.md</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/remarkable/benchmark/fixtures/block-ref-flat.md</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/remarkable/benchmark/fixtures/block-ref-nested.md</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/remarkable/benchmark/fixtures/block-tables-large.md</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/remarkable/benchmark/fixtures/block-tables.md</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/remarkable/benchmark/fixtures/inline-autolink.md</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/remarkable/benchmark/fixtures/inline-backticks.md</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/remarkable/benchmark/fixtures/inline-em-flat.md</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/remarkable/benchmark/fixtures/inline-em-nested.md</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/remarkable/benchmark/fixtures/inline-em-worst.md</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/remarkable/benchmark/fixtures/inline-entity.md</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/remarkable/benchmark/fixtures/inline-escape.md</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/remarkable/benchmark/fixtures/inline-html.md</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/remarkable/benchmark/fixtures/inline-links-flat.md</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/remarkable/benchmark/fixtures/inline-links-nested.md</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/remarkable/benchmark/fixtures/inline-newlines-large.md</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/remarkable/benchmark/fixtures/inline-newlines.md</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/remarkable/benchmark/fixtures/lorem1.txt</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/remarkable/benchmark/fixtures/rawtabs.md</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/remarkable/benchmark/fixtures/spec.txt</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/remarkable/benchmark/implementations/commonmark-reference/index.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/remarkable/benchmark/implementations/current-commonmark/index.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/remarkable/benchmark/implementations/current/index.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/remarkable/benchmark/implementations/marked-0.3.2/index.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/remarkable/benchmark/index.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/remarkable/benchmark/profile.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/remarkable/bin/remarkable.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/remarkable/bower.json</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/remarkable/demo/.eslintrc</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/remarkable/demo/assets/index.css</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/remarkable/demo/assets/index.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/remarkable/demo/assets/index.styl</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/remarkable/demo/example.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/remarkable/demo/example.md</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/remarkable/demo/index.html</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/remarkable/demo/index.jade</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/remarkable/dist/remarkable.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/remarkable/dist/remarkable.min.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/remarkable/docs/parser.md</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/remarkable/docs/parsing_block.md</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/remarkable/docs/parsing_core.md</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/remarkable/docs/parsing_inline.md</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/remarkable/docs/plugins.md</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/remarkable/docs/renderer.md</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/remarkable/index.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/remarkable/lib/common/entities.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/remarkable/lib/common/html_blocks.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/remarkable/lib/common/html_re.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/remarkable/lib/common/url_schemas.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/remarkable/lib/common/utils.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/remarkable/lib/configs/commonmark.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/remarkable/lib/configs/default.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/remarkable/lib/configs/full.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/remarkable/lib/helpers/normalize_link.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/remarkable/lib/helpers/normalize_reference.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/remarkable/lib/helpers/parse_link_destination.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/remarkable/lib/helpers/parse_link_label.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/remarkable/lib/helpers/parse_link_title.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/remarkable/lib/index.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/remarkable/lib/parser_block.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/remarkable/lib/parser_core.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/remarkable/lib/parser_inline.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/remarkable/lib/renderer.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/remarkable/lib/ruler.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/remarkable/lib/rules.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/remarkable/lib/rules_block/blockquote.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/remarkable/lib/rules_block/code.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/remarkable/lib/rules_block/deflist.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/remarkable/lib/rules_block/fences.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/remarkable/lib/rules_block/footnote.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/remarkable/lib/rules_block/heading.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/remarkable/lib/rules_block/hr.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/remarkable/lib/rules_block/htmlblock.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/remarkable/lib/rules_block/lheading.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/remarkable/lib/rules_block/list.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/remarkable/lib/rules_block/paragraph.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/remarkable/lib/rules_block/state_block.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/remarkable/lib/rules_block/table.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/remarkable/lib/rules_core/abbr.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/remarkable/lib/rules_core/abbr2.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/remarkable/lib/rules_core/block.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/remarkable/lib/rules_core/footnote_tail.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/remarkable/lib/rules_core/inline.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/remarkable/lib/rules_core/linkify.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/remarkable/lib/rules_core/references.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/remarkable/lib/rules_core/replacements.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/remarkable/lib/rules_core/smartquotes.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/remarkable/lib/rules_inline/autolink.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/remarkable/lib/rules_inline/backticks.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/remarkable/lib/rules_inline/del.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/remarkable/lib/rules_inline/emphasis.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/remarkable/lib/rules_inline/entity.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/remarkable/lib/rules_inline/escape.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/remarkable/lib/rules_inline/footnote_inline.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/remarkable/lib/rules_inline/footnote_ref.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/remarkable/lib/rules_inline/htmltag.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/remarkable/lib/rules_inline/ins.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/remarkable/lib/rules_inline/links.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/remarkable/lib/rules_inline/mark.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/remarkable/lib/rules_inline/newline.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/remarkable/lib/rules_inline/state_inline.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/remarkable/lib/rules_inline/sub.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/remarkable/lib/rules_inline/sup.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/remarkable/lib/rules_inline/text.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/remarkable/node_modules/argparse/HISTORY.md</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/remarkable/node_modules/argparse/LICENSE</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/remarkable/node_modules/argparse/README.md</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/remarkable/node_modules/argparse/examples/arguments.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/remarkable/node_modules/argparse/examples/choice.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/remarkable/node_modules/argparse/examples/constants.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/remarkable/node_modules/argparse/examples/help.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/remarkable/node_modules/argparse/examples/nargs.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/remarkable/node_modules/argparse/examples/parents.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/remarkable/node_modules/argparse/examples/prefix_chars.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/remarkable/node_modules/argparse/examples/sub_commands.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/remarkable/node_modules/argparse/examples/sum.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/remarkable/node_modules/argparse/examples/testformatters.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/remarkable/node_modules/argparse/index.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/remarkable/node_modules/argparse/lib/action.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/remarkable/node_modules/argparse/lib/action/append.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/remarkable/node_modules/argparse/lib/action/append/constant.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/remarkable/node_modules/argparse/lib/action/count.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/remarkable/node_modules/argparse/lib/action/help.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/remarkable/node_modules/argparse/lib/action/store.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/remarkable/node_modules/argparse/lib/action/store/constant.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/remarkable/node_modules/argparse/lib/action/store/false.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/remarkable/node_modules/argparse/lib/action/store/true.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/remarkable/node_modules/argparse/lib/action/subparsers.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/remarkable/node_modules/argparse/lib/action/version.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/remarkable/node_modules/argparse/lib/action_container.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/remarkable/node_modules/argparse/lib/argparse.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/remarkable/node_modules/argparse/lib/argument/error.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/remarkable/node_modules/argparse/lib/argument/exclusive.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/remarkable/node_modules/argparse/lib/argument/group.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/remarkable/node_modules/argparse/lib/argument_parser.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/remarkable/node_modules/argparse/lib/const.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/remarkable/node_modules/argparse/lib/help/added_formatters.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/remarkable/node_modules/argparse/lib/help/formatter.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/remarkable/node_modules/argparse/lib/namespace.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/remarkable/node_modules/argparse/package.json</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/remarkable/node_modules/underscore/LICENSE</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/remarkable/node_modules/underscore/README.md</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/remarkable/node_modules/underscore/package.json</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/remarkable/node_modules/underscore/underscore-min.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/remarkable/node_modules/underscore/underscore.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/remarkable/package.json</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/remarkable/support/demodata.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/remarkable/support/entities.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/remarkable/support/specsplit.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/remarkable/test/commonmark.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/remarkable/test/fixtures/commonmark/bad.txt</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/remarkable/test/fixtures/commonmark/good.txt</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/remarkable/test/fixtures/commonmark/spec.txt</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/remarkable/test/fixtures/remarkable/abbr.txt</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/remarkable/test/fixtures/remarkable/commonmark_extras.txt</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/remarkable/test/fixtures/remarkable/deflist.txt</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/remarkable/test/fixtures/remarkable/del.txt</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/remarkable/test/fixtures/remarkable/footnotes.txt</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/remarkable/test/fixtures/remarkable/ins.txt</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/remarkable/test/fixtures/remarkable/linkify.txt</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/remarkable/test/fixtures/remarkable/mark.txt</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/remarkable/test/fixtures/remarkable/proto.txt</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/remarkable/test/fixtures/remarkable/smartquotes.txt</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/remarkable/test/fixtures/remarkable/sub.txt</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/remarkable/test/fixtures/remarkable/sup.txt</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/remarkable/test/fixtures/remarkable/tables.txt</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/remarkable/test/fixtures/remarkable/typographer.txt</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/remarkable/test/fixtures/remarkable/xss.txt</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/remarkable/test/misc.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/remarkable/test/remarkable.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/remarkable/test/ruler.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/remarkable/test/utils.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/repeat-element/LICENSE</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/repeat-element/README.md</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/repeat-element/index.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/repeat-element/package.json</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/repeat-string/LICENSE</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/repeat-string/README.md</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/repeat-string/index.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/repeat-string/package.json</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/request-promise-core/.npmignore</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/request-promise-core/LICENSE</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/request-promise-core/README.md</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/request-promise-core/configure/request-next.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/request-promise-core/configure/request2.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/request-promise-core/errors.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/request-promise-core/lib/errors.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/request-promise-core/lib/plumbing.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/request-promise-core/package.json</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/request-promise-native/.npmignore</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/request-promise-native/LICENSE</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/request-promise-native/README.md</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/request-promise-native/errors.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/request-promise-native/lib/rp.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/request-promise-native/package.json</Path>
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/rimraf/LICENSE</Path>
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/rimraf/README.md</Path>
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/rimraf/bin.js</Path>
@@ -9016,31 +11403,84 @@
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/sander/src/specialMethods/writeFile-appendFile.js</Path>
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/sander/src/utils/resolvePath.js</Path>
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/sander/src/utils/resolvePathAndOptions.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/sanitize-html/.travis.yml</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/sanitize-html/CHANGELOG.md</Path>
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/sanitize-html/LICENSE</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/sanitize-html/Makefile</Path>
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/sanitize-html/README.md</Path>
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/sanitize-html/dist/index.js</Path>
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/sanitize-html/dist/sanitize-html.js</Path>
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/sanitize-html/dist/sanitize-html.min.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/sanitize-html/logos/logo-box-builtby.png</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/sanitize-html/logos/logo-box-madefor.png</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/sanitize-html/node_modules/ansi-styles/index.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/sanitize-html/node_modules/ansi-styles/license</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/sanitize-html/node_modules/ansi-styles/package.json</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/sanitize-html/node_modules/ansi-styles/readme.md</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/sanitize-html/node_modules/chalk/index.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/sanitize-html/node_modules/chalk/index.js.flow</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/sanitize-html/node_modules/chalk/license</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/sanitize-html/node_modules/chalk/package.json</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/sanitize-html/node_modules/chalk/readme.md</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/sanitize-html/node_modules/chalk/templates.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/sanitize-html/node_modules/chalk/types/index.d.ts</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/sanitize-html/node_modules/color-convert/CHANGELOG.md</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/sanitize-html/node_modules/color-convert/LICENSE</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/sanitize-html/node_modules/color-convert/README.md</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/sanitize-html/node_modules/color-convert/conversions.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/sanitize-html/node_modules/color-convert/index.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/sanitize-html/node_modules/color-convert/package.json</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/sanitize-html/node_modules/color-convert/route.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/sanitize-html/node_modules/color-name/.eslintrc.json</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/sanitize-html/node_modules/color-name/.npmignore</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/sanitize-html/node_modules/color-name/LICENSE</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/sanitize-html/node_modules/color-name/README.md</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/sanitize-html/node_modules/color-name/index.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/sanitize-html/node_modules/color-name/package.json</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/sanitize-html/node_modules/color-name/test.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/sanitize-html/node_modules/supports-color/browser.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/sanitize-html/node_modules/supports-color/index.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/sanitize-html/node_modules/supports-color/license</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/sanitize-html/node_modules/supports-color/package.json</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/sanitize-html/node_modules/supports-color/readme.md</Path>
<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/sax/LICENSE</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/sax/README.md</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/sax/lib/sax.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/sax/package.json</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/section-iterator/LICENSE</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/section-iterator/README.md</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/section-iterator/dist/index.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/section-iterator/package.json</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>
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/semver/package.json</Path>
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/semver/range.bnf</Path>
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/semver/semver.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/set-getter/LICENSE</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/set-getter/README.md</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/set-getter/index.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/set-getter/package.json</Path>
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/setimmediate/LICENSE.txt</Path>
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/setimmediate/package.json</Path>
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/setimmediate/setImmediate.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/shallow-equal/LICENSE</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/shallow-equal/README.md</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/shallow-equal/arrays/index.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/shallow-equal/objects/index.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/shallow-equal/package.json</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/signal-exit/CHANGELOG.md</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/signal-exit/LICENSE.txt</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/signal-exit/README.md</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/signal-exit/index.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/signal-exit/package.json</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/signal-exit/signals.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/slugify/LICENSE</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/slugify/README.md</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/slugify/index.d.ts</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/slugify/index.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/slugify/package.json</Path>
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/source-map/CHANGELOG.md</Path>
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/source-map/LICENSE</Path>
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/source-map/README.md</Path>
@@ -9061,58 +11501,90 @@
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/source-map/package.json</Path>
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/source-map/source-map.d.ts</Path>
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/source-map/source-map.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/sprintf-js/.npmignore</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/sprintf-js/CHANGELOG.md</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/sprintf-js/CONTRIBUTORS.md</Path>
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/sprintf-js/LICENSE</Path>
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/sprintf-js/README.md</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/sprintf-js/bower.json</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/sprintf-js/demo/angular.html</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/sprintf-js/dist/.gitattributes</Path>
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/sprintf-js/dist/angular-sprintf.min.js</Path>
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/sprintf-js/dist/angular-sprintf.min.js.map</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/sprintf-js/dist/angular-sprintf.min.map</Path>
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/sprintf-js/dist/sprintf.min.js</Path>
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/sprintf-js/dist/sprintf.min.js.map</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/sprintf-js/dist/sprintf.min.map</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/sprintf-js/gruntfile.js</Path>
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/sprintf-js/package.json</Path>
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/sprintf-js/src/angular-sprintf.js</Path>
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/sprintf-js/src/sprintf.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/sprintf-js/test/test.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/sprintf/.npmignore</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/sprintf/README.md</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/sprintf/lib/sprintf.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/sprintf/package.json</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/sprintf/test/function-export.js</Path>
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/srcset/index.js</Path>
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/srcset/license</Path>
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/srcset/package.json</Path>
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/srcset/readme.md</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/string/.idea/codeStyleSettings.xml</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/string/.idea/encodings.xml</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/string/.idea/jsLibraryMappings.xml</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/string/.idea/libraries/string_js_node_modules.xml</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/string/.idea/misc.xml</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/string/.idea/modules.xml</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/string/.idea/scopes/scope_settings.xml</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/string/.idea/string.js.iml</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/string/.idea/vcs.xml</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/string/.idea/workspace.xml</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/string/.min-wd</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/string/.npmignore</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/string/CHANGELOG.md</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/string/README.md</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/string/dist/string.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/string/dist/string.min.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/string/gulpfile.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/string/lib/_count.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/string/lib/_splitLeft.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/string/lib/_splitRight.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/string/lib/string.js</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/string/package.json</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/sshpk/.npmignore</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/sshpk/.travis.yml</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/sshpk/LICENSE</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/sshpk/README.md</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/sshpk/bin/sshpk-conv</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/sshpk/bin/sshpk-sign</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/sshpk/bin/sshpk-verify</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/sshpk/lib/algs.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/sshpk/lib/certificate.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/sshpk/lib/dhe.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/sshpk/lib/ed-compat.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/sshpk/lib/errors.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/sshpk/lib/fingerprint.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/sshpk/lib/formats/auto.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/sshpk/lib/formats/dnssec.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/sshpk/lib/formats/openssh-cert.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/sshpk/lib/formats/pem.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/sshpk/lib/formats/pkcs1.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/sshpk/lib/formats/pkcs8.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/sshpk/lib/formats/putty.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/sshpk/lib/formats/rfc4253.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/sshpk/lib/formats/ssh-private.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/sshpk/lib/formats/ssh.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/sshpk/lib/formats/x509-pem.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/sshpk/lib/formats/x509.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/sshpk/lib/identity.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/sshpk/lib/index.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/sshpk/lib/key.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/sshpk/lib/private-key.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/sshpk/lib/signature.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/sshpk/lib/ssh-buffer.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/sshpk/lib/utils.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/sshpk/man/man1/sshpk-conv.1</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/sshpk/man/man1/sshpk-sign.1</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/sshpk/man/man1/sshpk-verify.1</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/sshpk/node_modules/asn1/LICENSE</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/sshpk/node_modules/asn1/README.md</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/sshpk/node_modules/asn1/lib/ber/errors.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/sshpk/node_modules/asn1/lib/ber/index.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/sshpk/node_modules/asn1/lib/ber/reader.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/sshpk/node_modules/asn1/lib/ber/types.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/sshpk/node_modules/asn1/lib/ber/writer.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/sshpk/node_modules/asn1/lib/index.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/sshpk/node_modules/asn1/package.json</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/sshpk/node_modules/assert-plus/AUTHORS</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/sshpk/node_modules/assert-plus/CHANGES.md</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/sshpk/node_modules/assert-plus/README.md</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/sshpk/node_modules/assert-plus/assert.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/sshpk/node_modules/assert-plus/package.json</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/sshpk/package.json</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/stealthy-require/.npmignore</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/stealthy-require/LICENSE</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/stealthy-require/README.md</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/stealthy-require/lib/index.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/stealthy-require/package.json</Path>
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/string_decoder/.travis.yml</Path>
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/string_decoder/LICENSE</Path>
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/string_decoder/README.md</Path>
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/string_decoder/lib/string_decoder.js</Path>
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/string_decoder/package.json</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/strip-color/LICENSE</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/strip-color/README.md</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/strip-color/index.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/strip-color/package.json</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/strip-css-comments/index.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/strip-css-comments/license</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/strip-css-comments/package.json</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/strip-css-comments/readme.md</Path>
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/strip-outer/index.js</Path>
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/strip-outer/license</Path>
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/strip-outer/package.json</Path>
@@ -9125,11 +11597,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/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>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/supports-color/package.json</Path>
- <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/supports-color/readme.md</Path>
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/symbol-observable/CHANGELOG.md</Path>
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/symbol-observable/es/index.js</Path>
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/symbol-observable/es/ponyfill.js</Path>
@@ -9140,19 +11607,641 @@
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/symbol-observable/license</Path>
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/symbol-observable/package.json</Path>
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/symbol-observable/readme.md</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/symbol-tree/LICENSE</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/symbol-tree/README.md</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/symbol-tree/lib/SymbolTree.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/symbol-tree/lib/SymbolTreeNode.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/symbol-tree/lib/TreeIterator.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/symbol-tree/lib/TreePosition.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/symbol-tree/package.json</Path>
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/timed-out/index.js</Path>
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/timed-out/license</Path>
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/timed-out/package.json</Path>
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/timed-out/readme.md</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/to-object-path/LICENSE</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/to-object-path/README.md</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/to-object-path/index.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/to-object-path/package.json</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/toml/.jshintrc</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/toml/.travis.yml</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/toml/CHANGELOG.md</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/toml/LICENSE</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/toml/README.md</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/toml/benchmark.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/toml/index.d.ts</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/toml/index.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/toml/lib/compiler.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/toml/lib/parser.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/toml/package.json</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/toml/src/toml.pegjs</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/toml/test/bad.toml</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/toml/test/example.toml</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/toml/test/hard_example.toml</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/toml/test/inline_tables.toml</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/toml/test/literal_strings.toml</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/toml/test/multiline_eat_whitespace.toml</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/toml/test/multiline_literal_strings.toml</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/toml/test/multiline_strings.toml</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/toml/test/smoke.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/toml/test/table_arrays_easy.toml</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/toml/test/table_arrays_hard.toml</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/toml/test/test_toml.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/tough-cookie/LICENSE</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/tough-cookie/README.md</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/tough-cookie/lib/cookie.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/tough-cookie/lib/memstore.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/tough-cookie/lib/pathMatch.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/tough-cookie/lib/permuteDomain.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/tough-cookie/lib/pubsuffix-psl.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/tough-cookie/lib/store.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/tough-cookie/lib/version.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/tough-cookie/package.json</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/tr46/LICENSE.md</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/tr46/README.md</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/tr46/index.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/tr46/lib/mappingTable.json</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/tr46/lib/regexes.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/tr46/package.json</Path>
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/trim-repeated/index.js</Path>
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/trim-repeated/license</Path>
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/trim-repeated/package.json</Path>
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/trim-repeated/readme.md</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/turndown-plugin-gfm/LICENSE</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/turndown-plugin-gfm/README.md</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/turndown-plugin-gfm/dist/turndown-plugin-gfm.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/turndown-plugin-gfm/lib/turndown-plugin-gfm.browser.cjs.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/turndown-plugin-gfm/lib/turndown-plugin-gfm.browser.es.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/turndown-plugin-gfm/lib/turndown-plugin-gfm.cjs.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/turndown-plugin-gfm/lib/turndown-plugin-gfm.es.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/turndown-plugin-gfm/package.json</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/turndown/LICENSE</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/turndown/README.md</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/turndown/dist/turndown.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/turndown/lib/turndown.browser.cjs.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/turndown/lib/turndown.browser.es.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/turndown/lib/turndown.browser.umd.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/turndown/lib/turndown.cjs.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/turndown/lib/turndown.es.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/turndown/lib/turndown.umd.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/turndown/node_modules/assert-plus/AUTHORS</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/turndown/node_modules/assert-plus/CHANGES.md</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/turndown/node_modules/assert-plus/README.md</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/turndown/node_modules/assert-plus/assert.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/turndown/node_modules/assert-plus/package.json</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/turndown/node_modules/aws-sign2/LICENSE</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/turndown/node_modules/aws-sign2/README.md</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/turndown/node_modules/aws-sign2/index.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/turndown/node_modules/aws-sign2/package.json</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/turndown/node_modules/caseless/LICENSE</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/turndown/node_modules/caseless/README.md</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/turndown/node_modules/caseless/index.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/turndown/node_modules/caseless/package.json</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/turndown/node_modules/caseless/test.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/turndown/node_modules/combined-stream/License</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/turndown/node_modules/combined-stream/Readme.md</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/turndown/node_modules/combined-stream/lib/combined_stream.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/turndown/node_modules/combined-stream/lib/defer.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/turndown/node_modules/combined-stream/package.json</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/turndown/node_modules/delayed-stream/.npmignore</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/turndown/node_modules/delayed-stream/License</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/turndown/node_modules/delayed-stream/Makefile</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/turndown/node_modules/delayed-stream/Readme.md</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/turndown/node_modules/delayed-stream/lib/delayed_stream.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/turndown/node_modules/delayed-stream/package.json</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/turndown/node_modules/form-data/License</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/turndown/node_modules/form-data/README.md</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/turndown/node_modules/form-data/README.md.bak</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/turndown/node_modules/form-data/lib/browser.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/turndown/node_modules/form-data/lib/form_data.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/turndown/node_modules/form-data/lib/populate.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/turndown/node_modules/form-data/package.json</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/turndown/node_modules/form-data/yarn.lock</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/turndown/node_modules/har-validator/LICENSE</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/turndown/node_modules/har-validator/README.md</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/turndown/node_modules/har-validator/lib/async.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/turndown/node_modules/har-validator/lib/error.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/turndown/node_modules/har-validator/lib/promise.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/turndown/node_modules/har-validator/package.json</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/turndown/node_modules/http-signature/.dir-locals.el</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/turndown/node_modules/http-signature/.npmignore</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/turndown/node_modules/http-signature/CHANGES.md</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/turndown/node_modules/http-signature/LICENSE</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/turndown/node_modules/http-signature/README.md</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/turndown/node_modules/http-signature/http_signing.md</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/turndown/node_modules/http-signature/lib/index.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/turndown/node_modules/http-signature/lib/parser.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/turndown/node_modules/http-signature/lib/signer.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/turndown/node_modules/http-signature/lib/utils.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/turndown/node_modules/http-signature/lib/verify.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/turndown/node_modules/http-signature/package.json</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/turndown/node_modules/jsdom/Changelog.md</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/turndown/node_modules/jsdom/LICENSE.txt</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/turndown/node_modules/jsdom/README.md</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/turndown/node_modules/jsdom/lib/api.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/turndown/node_modules/jsdom/lib/jsdom/browser/Window.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/turndown/node_modules/jsdom/lib/jsdom/browser/default-stylesheet.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/turndown/node_modules/jsdom/lib/jsdom/browser/documentfeatures.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/turndown/node_modules/jsdom/lib/jsdom/browser/domtohtml.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/turndown/node_modules/jsdom/lib/jsdom/browser/htmltodom.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/turndown/node_modules/jsdom/lib/jsdom/browser/not-implemented.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/turndown/node_modules/jsdom/lib/jsdom/browser/parse5-adapter-parsing.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/turndown/node_modules/jsdom/lib/jsdom/browser/parse5-adapter-serialization.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/turndown/node_modules/jsdom/lib/jsdom/browser/resource-loader.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/turndown/node_modules/jsdom/lib/jsdom/level2/style.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/turndown/node_modules/jsdom/lib/jsdom/level3/xpath.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/turndown/node_modules/jsdom/lib/jsdom/living/aborting/AbortController-impl.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/turndown/node_modules/jsdom/lib/jsdom/living/aborting/AbortSignal-impl.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/turndown/node_modules/jsdom/lib/jsdom/living/attributes.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/turndown/node_modules/jsdom/lib/jsdom/living/attributes/Attr-impl.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/turndown/node_modules/jsdom/lib/jsdom/living/attributes/NamedNodeMap-impl.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/turndown/node_modules/jsdom/lib/jsdom/living/constraint-validation/DefaultConstraintValidation-impl.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/turndown/node_modules/jsdom/lib/jsdom/living/constraint-validation/ValidityState-impl.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/turndown/node_modules/jsdom/lib/jsdom/living/domparsing/DOMParser-impl.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/turndown/node_modules/jsdom/lib/jsdom/living/events/CloseEvent-impl.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/turndown/node_modules/jsdom/lib/jsdom/living/events/CompositionEvent-impl.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/turndown/node_modules/jsdom/lib/jsdom/living/events/CustomEvent-impl.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/turndown/node_modules/jsdom/lib/jsdom/living/events/ErrorEvent-impl.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/turndown/node_modules/jsdom/lib/jsdom/living/events/Event-impl.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/turndown/node_modules/jsdom/lib/jsdom/living/events/EventModifierMixin-impl.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/turndown/node_modules/jsdom/lib/jsdom/living/events/EventTarget-impl.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/turndown/node_modules/jsdom/lib/jsdom/living/events/FocusEvent-impl.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/turndown/node_modules/jsdom/lib/jsdom/living/events/HashChangeEvent-impl.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/turndown/node_modules/jsdom/lib/jsdom/living/events/KeyboardEvent-impl.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/turndown/node_modules/jsdom/lib/jsdom/living/events/MessageEvent-impl.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/turndown/node_modules/jsdom/lib/jsdom/living/events/MouseEvent-impl.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/turndown/node_modules/jsdom/lib/jsdom/living/events/PopStateEvent-impl.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/turndown/node_modules/jsdom/lib/jsdom/living/events/ProgressEvent-impl.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/turndown/node_modules/jsdom/lib/jsdom/living/events/StorageEvent-impl.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/turndown/node_modules/jsdom/lib/jsdom/living/events/TouchEvent-impl.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/turndown/node_modules/jsdom/lib/jsdom/living/events/UIEvent-impl.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/turndown/node_modules/jsdom/lib/jsdom/living/events/WheelEvent-impl.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/turndown/node_modules/jsdom/lib/jsdom/living/file-api/Blob-impl.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/turndown/node_modules/jsdom/lib/jsdom/living/file-api/File-impl.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/turndown/node_modules/jsdom/lib/jsdom/living/file-api/FileList-impl.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/turndown/node_modules/jsdom/lib/jsdom/living/file-api/FileReader-impl.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/turndown/node_modules/jsdom/lib/jsdom/living/generated/AbortController.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/turndown/node_modules/jsdom/lib/jsdom/living/generated/AbortSignal.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/turndown/node_modules/jsdom/lib/jsdom/living/generated/AddEventListenerOptions.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/turndown/node_modules/jsdom/lib/jsdom/living/generated/Attr.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/turndown/node_modules/jsdom/lib/jsdom/living/generated/BarProp.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/turndown/node_modules/jsdom/lib/jsdom/living/generated/BinaryType.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/turndown/node_modules/jsdom/lib/jsdom/living/generated/Blob.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/turndown/node_modules/jsdom/lib/jsdom/living/generated/BlobPropertyBag.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/turndown/node_modules/jsdom/lib/jsdom/living/generated/CDATASection.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/turndown/node_modules/jsdom/lib/jsdom/living/generated/CanPlayTypeResult.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/turndown/node_modules/jsdom/lib/jsdom/living/generated/CharacterData.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/turndown/node_modules/jsdom/lib/jsdom/living/generated/ChildNode.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/turndown/node_modules/jsdom/lib/jsdom/living/generated/CloseEvent.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/turndown/node_modules/jsdom/lib/jsdom/living/generated/CloseEventInit.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/turndown/node_modules/jsdom/lib/jsdom/living/generated/Comment.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/turndown/node_modules/jsdom/lib/jsdom/living/generated/CompositionEvent.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/turndown/node_modules/jsdom/lib/jsdom/living/generated/CompositionEventInit.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/turndown/node_modules/jsdom/lib/jsdom/living/generated/CustomEvent.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/turndown/node_modules/jsdom/lib/jsdom/living/generated/CustomEventInit.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/turndown/node_modules/jsdom/lib/jsdom/living/generated/DOMImplementation.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/turndown/node_modules/jsdom/lib/jsdom/living/generated/DOMParser.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/turndown/node_modules/jsdom/lib/jsdom/living/generated/DOMStringMap.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/turndown/node_modules/jsdom/lib/jsdom/living/generated/DOMTokenList.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/turndown/node_modules/jsdom/lib/jsdom/living/generated/Document.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/turndown/node_modules/jsdom/lib/jsdom/living/generated/DocumentFragment.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/turndown/node_modules/jsdom/lib/jsdom/living/generated/DocumentReadyState.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/turndown/node_modules/jsdom/lib/jsdom/living/generated/DocumentType.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/turndown/node_modules/jsdom/lib/jsdom/living/generated/Element.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/turndown/node_modules/jsdom/lib/jsdom/living/generated/ElementCSSInlineStyle.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/turndown/node_modules/jsdom/lib/jsdom/living/generated/ElementContentEditable.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/turndown/node_modules/jsdom/lib/jsdom/living/generated/ElementCreationOptions.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/turndown/node_modules/jsdom/lib/jsdom/living/generated/EndingType.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/turndown/node_modules/jsdom/lib/jsdom/living/generated/ErrorEvent.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/turndown/node_modules/jsdom/lib/jsdom/living/generated/ErrorEventInit.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/turndown/node_modules/jsdom/lib/jsdom/living/generated/Event.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/turndown/node_modules/jsdom/lib/jsdom/living/generated/EventInit.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/turndown/node_modules/jsdom/lib/jsdom/living/generated/EventListenerOptions.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/turndown/node_modules/jsdom/lib/jsdom/living/generated/EventModifierInit.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/turndown/node_modules/jsdom/lib/jsdom/living/generated/EventTarget.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/turndown/node_modules/jsdom/lib/jsdom/living/generated/External.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/turndown/node_modules/jsdom/lib/jsdom/living/generated/File.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/turndown/node_modules/jsdom/lib/jsdom/living/generated/FileList.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/turndown/node_modules/jsdom/lib/jsdom/living/generated/FilePropertyBag.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/turndown/node_modules/jsdom/lib/jsdom/living/generated/FileReader.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/turndown/node_modules/jsdom/lib/jsdom/living/generated/FocusEvent.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/turndown/node_modules/jsdom/lib/jsdom/living/generated/FocusEventInit.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/turndown/node_modules/jsdom/lib/jsdom/living/generated/FormData.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/turndown/node_modules/jsdom/lib/jsdom/living/generated/GetRootNodeOptions.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/turndown/node_modules/jsdom/lib/jsdom/living/generated/GlobalEventHandlers.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/turndown/node_modules/jsdom/lib/jsdom/living/generated/HTMLAnchorElement.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/turndown/node_modules/jsdom/lib/jsdom/living/generated/HTMLAreaElement.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/turndown/node_modules/jsdom/lib/jsdom/living/generated/HTMLAudioElement.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/turndown/node_modules/jsdom/lib/jsdom/living/generated/HTMLBRElement.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/turndown/node_modules/jsdom/lib/jsdom/living/generated/HTMLBaseElement.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/turndown/node_modules/jsdom/lib/jsdom/living/generated/HTMLBodyElement.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/turndown/node_modules/jsdom/lib/jsdom/living/generated/HTMLButtonElement.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/turndown/node_modules/jsdom/lib/jsdom/living/generated/HTMLCanvasElement.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/turndown/node_modules/jsdom/lib/jsdom/living/generated/HTMLCollection.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/turndown/node_modules/jsdom/lib/jsdom/living/generated/HTMLDListElement.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/turndown/node_modules/jsdom/lib/jsdom/living/generated/HTMLDataElement.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/turndown/node_modules/jsdom/lib/jsdom/living/generated/HTMLDataListElement.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/turndown/node_modules/jsdom/lib/jsdom/living/generated/HTMLDetailsElement.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/turndown/node_modules/jsdom/lib/jsdom/living/generated/HTMLDialogElement.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/turndown/node_modules/jsdom/lib/jsdom/living/generated/HTMLDirectoryElement.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/turndown/node_modules/jsdom/lib/jsdom/living/generated/HTMLDivElement.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/turndown/node_modules/jsdom/lib/jsdom/living/generated/HTMLElement.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/turndown/node_modules/jsdom/lib/jsdom/living/generated/HTMLEmbedElement.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/turndown/node_modules/jsdom/lib/jsdom/living/generated/HTMLFieldSetElement.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/turndown/node_modules/jsdom/lib/jsdom/living/generated/HTMLFontElement.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/turndown/node_modules/jsdom/lib/jsdom/living/generated/HTMLFormElement.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/turndown/node_modules/jsdom/lib/jsdom/living/generated/HTMLFrameElement.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/turndown/node_modules/jsdom/lib/jsdom/living/generated/HTMLFrameSetElement.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/turndown/node_modules/jsdom/lib/jsdom/living/generated/HTMLHRElement.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/turndown/node_modules/jsdom/lib/jsdom/living/generated/HTMLHeadElement.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/turndown/node_modules/jsdom/lib/jsdom/living/generated/HTMLHeadingElement.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/turndown/node_modules/jsdom/lib/jsdom/living/generated/HTMLHtmlElement.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/turndown/node_modules/jsdom/lib/jsdom/living/generated/HTMLHyperlinkElementUtils.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/turndown/node_modules/jsdom/lib/jsdom/living/generated/HTMLIFrameElement.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/turndown/node_modules/jsdom/lib/jsdom/living/generated/HTMLImageElement.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/turndown/node_modules/jsdom/lib/jsdom/living/generated/HTMLInputElement.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/turndown/node_modules/jsdom/lib/jsdom/living/generated/HTMLLIElement.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/turndown/node_modules/jsdom/lib/jsdom/living/generated/HTMLLabelElement.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/turndown/node_modules/jsdom/lib/jsdom/living/generated/HTMLLegendElement.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/turndown/node_modules/jsdom/lib/jsdom/living/generated/HTMLLinkElement.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/turndown/node_modules/jsdom/lib/jsdom/living/generated/HTMLMapElement.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/turndown/node_modules/jsdom/lib/jsdom/living/generated/HTMLMarqueeElement.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/turndown/node_modules/jsdom/lib/jsdom/living/generated/HTMLMediaElement.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/turndown/node_modules/jsdom/lib/jsdom/living/generated/HTMLMenuElement.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/turndown/node_modules/jsdom/lib/jsdom/living/generated/HTMLMetaElement.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/turndown/node_modules/jsdom/lib/jsdom/living/generated/HTMLMeterElement.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/turndown/node_modules/jsdom/lib/jsdom/living/generated/HTMLModElement.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/turndown/node_modules/jsdom/lib/jsdom/living/generated/HTMLOListElement.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/turndown/node_modules/jsdom/lib/jsdom/living/generated/HTMLObjectElement.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/turndown/node_modules/jsdom/lib/jsdom/living/generated/HTMLOptGroupElement.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/turndown/node_modules/jsdom/lib/jsdom/living/generated/HTMLOptionElement.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/turndown/node_modules/jsdom/lib/jsdom/living/generated/HTMLOptionsCollection.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/turndown/node_modules/jsdom/lib/jsdom/living/generated/HTMLOutputElement.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/turndown/node_modules/jsdom/lib/jsdom/living/generated/HTMLParagraphElement.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/turndown/node_modules/jsdom/lib/jsdom/living/generated/HTMLParamElement.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/turndown/node_modules/jsdom/lib/jsdom/living/generated/HTMLPictureElement.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/turndown/node_modules/jsdom/lib/jsdom/living/generated/HTMLPreElement.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/turndown/node_modules/jsdom/lib/jsdom/living/generated/HTMLProgressElement.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/turndown/node_modules/jsdom/lib/jsdom/living/generated/HTMLQuoteElement.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/turndown/node_modules/jsdom/lib/jsdom/living/generated/HTMLScriptElement.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/turndown/node_modules/jsdom/lib/jsdom/living/generated/HTMLSelectElement.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/turndown/node_modules/jsdom/lib/jsdom/living/generated/HTMLSourceElement.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/turndown/node_modules/jsdom/lib/jsdom/living/generated/HTMLSpanElement.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/turndown/node_modules/jsdom/lib/jsdom/living/generated/HTMLStyleElement.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/turndown/node_modules/jsdom/lib/jsdom/living/generated/HTMLTableCaptionElement.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/turndown/node_modules/jsdom/lib/jsdom/living/generated/HTMLTableCellElement.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/turndown/node_modules/jsdom/lib/jsdom/living/generated/HTMLTableColElement.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/turndown/node_modules/jsdom/lib/jsdom/living/generated/HTMLTableElement.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/turndown/node_modules/jsdom/lib/jsdom/living/generated/HTMLTableRowElement.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/turndown/node_modules/jsdom/lib/jsdom/living/generated/HTMLTableSectionElement.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/turndown/node_modules/jsdom/lib/jsdom/living/generated/HTMLTemplateElement.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/turndown/node_modules/jsdom/lib/jsdom/living/generated/HTMLTextAreaElement.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/turndown/node_modules/jsdom/lib/jsdom/living/generated/HTMLTimeElement.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/turndown/node_modules/jsdom/lib/jsdom/living/generated/HTMLTitleElement.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/turndown/node_modules/jsdom/lib/jsdom/living/generated/HTMLTrackElement.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/turndown/node_modules/jsdom/lib/jsdom/living/generated/HTMLUListElement.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/turndown/node_modules/jsdom/lib/jsdom/living/generated/HTMLUnknownElement.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/turndown/node_modules/jsdom/lib/jsdom/living/generated/HTMLVideoElement.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/turndown/node_modules/jsdom/lib/jsdom/living/generated/HashChangeEvent.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/turndown/node_modules/jsdom/lib/jsdom/living/generated/HashChangeEventInit.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/turndown/node_modules/jsdom/lib/jsdom/living/generated/History.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/turndown/node_modules/jsdom/lib/jsdom/living/generated/KeyboardEvent.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/turndown/node_modules/jsdom/lib/jsdom/living/generated/KeyboardEventInit.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/turndown/node_modules/jsdom/lib/jsdom/living/generated/LinkStyle.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/turndown/node_modules/jsdom/lib/jsdom/living/generated/Location.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/turndown/node_modules/jsdom/lib/jsdom/living/generated/MessageEvent.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/turndown/node_modules/jsdom/lib/jsdom/living/generated/MessageEventInit.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/turndown/node_modules/jsdom/lib/jsdom/living/generated/MouseEvent.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/turndown/node_modules/jsdom/lib/jsdom/living/generated/MouseEventInit.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/turndown/node_modules/jsdom/lib/jsdom/living/generated/NamedNodeMap.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/turndown/node_modules/jsdom/lib/jsdom/living/generated/Navigator.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/turndown/node_modules/jsdom/lib/jsdom/living/generated/NavigatorConcurrentHardware.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/turndown/node_modules/jsdom/lib/jsdom/living/generated/NavigatorCookies.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/turndown/node_modules/jsdom/lib/jsdom/living/generated/NavigatorID.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/turndown/node_modules/jsdom/lib/jsdom/living/generated/NavigatorLanguage.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/turndown/node_modules/jsdom/lib/jsdom/living/generated/NavigatorOnLine.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/turndown/node_modules/jsdom/lib/jsdom/living/generated/NavigatorPlugins.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/turndown/node_modules/jsdom/lib/jsdom/living/generated/Node.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/turndown/node_modules/jsdom/lib/jsdom/living/generated/NodeIterator.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/turndown/node_modules/jsdom/lib/jsdom/living/generated/NodeList.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/turndown/node_modules/jsdom/lib/jsdom/living/generated/NonDocumentTypeChildNode.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/turndown/node_modules/jsdom/lib/jsdom/living/generated/NonElementParentNode.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/turndown/node_modules/jsdom/lib/jsdom/living/generated/ParentNode.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/turndown/node_modules/jsdom/lib/jsdom/living/generated/Performance.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/turndown/node_modules/jsdom/lib/jsdom/living/generated/PopStateEvent.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/turndown/node_modules/jsdom/lib/jsdom/living/generated/PopStateEventInit.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/turndown/node_modules/jsdom/lib/jsdom/living/generated/ProcessingInstruction.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/turndown/node_modules/jsdom/lib/jsdom/living/generated/ProgressEvent.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/turndown/node_modules/jsdom/lib/jsdom/living/generated/ProgressEventInit.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/turndown/node_modules/jsdom/lib/jsdom/living/generated/SVGAnimatedString.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/turndown/node_modules/jsdom/lib/jsdom/living/generated/SVGBoundingBoxOptions.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/turndown/node_modules/jsdom/lib/jsdom/living/generated/SVGElement.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/turndown/node_modules/jsdom/lib/jsdom/living/generated/SVGGraphicsElement.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/turndown/node_modules/jsdom/lib/jsdom/living/generated/SVGNumber.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/turndown/node_modules/jsdom/lib/jsdom/living/generated/SVGSVGElement.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/turndown/node_modules/jsdom/lib/jsdom/living/generated/SVGStringList.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/turndown/node_modules/jsdom/lib/jsdom/living/generated/SVGTests.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/turndown/node_modules/jsdom/lib/jsdom/living/generated/Screen.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/turndown/node_modules/jsdom/lib/jsdom/living/generated/ScrollBehavior.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/turndown/node_modules/jsdom/lib/jsdom/living/generated/ScrollIntoViewOptions.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/turndown/node_modules/jsdom/lib/jsdom/living/generated/ScrollLogicalPosition.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/turndown/node_modules/jsdom/lib/jsdom/living/generated/ScrollOptions.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/turndown/node_modules/jsdom/lib/jsdom/living/generated/ScrollRestoration.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/turndown/node_modules/jsdom/lib/jsdom/living/generated/SelectionMode.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/turndown/node_modules/jsdom/lib/jsdom/living/generated/ShadowRootInit.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/turndown/node_modules/jsdom/lib/jsdom/living/generated/Storage.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/turndown/node_modules/jsdom/lib/jsdom/living/generated/StorageEvent.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/turndown/node_modules/jsdom/lib/jsdom/living/generated/StorageEventInit.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/turndown/node_modules/jsdom/lib/jsdom/living/generated/SupportedType.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/turndown/node_modules/jsdom/lib/jsdom/living/generated/Text.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/turndown/node_modules/jsdom/lib/jsdom/living/generated/TextTrackKind.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/turndown/node_modules/jsdom/lib/jsdom/living/generated/TouchEvent.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/turndown/node_modules/jsdom/lib/jsdom/living/generated/TouchEventInit.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/turndown/node_modules/jsdom/lib/jsdom/living/generated/TreeWalker.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/turndown/node_modules/jsdom/lib/jsdom/living/generated/UIEvent.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/turndown/node_modules/jsdom/lib/jsdom/living/generated/UIEventInit.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/turndown/node_modules/jsdom/lib/jsdom/living/generated/ValidityState.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/turndown/node_modules/jsdom/lib/jsdom/living/generated/VisibilityState.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/turndown/node_modules/jsdom/lib/jsdom/living/generated/WebSocket.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/turndown/node_modules/jsdom/lib/jsdom/living/generated/WheelEvent.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/turndown/node_modules/jsdom/lib/jsdom/living/generated/WheelEventInit.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/turndown/node_modules/jsdom/lib/jsdom/living/generated/WindowEventHandlers.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/turndown/node_modules/jsdom/lib/jsdom/living/generated/XMLDocument.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/turndown/node_modules/jsdom/lib/jsdom/living/generated/XMLHttpRequestEventTarget.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/turndown/node_modules/jsdom/lib/jsdom/living/generated/XMLHttpRequestUpload.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/turndown/node_modules/jsdom/lib/jsdom/living/generated/utils.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/turndown/node_modules/jsdom/lib/jsdom/living/helpers/create-event-accessor.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/turndown/node_modules/jsdom/lib/jsdom/living/helpers/dates-and-times.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/turndown/node_modules/jsdom/lib/jsdom/living/helpers/document-base-url.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/turndown/node_modules/jsdom/lib/jsdom/living/helpers/focusing.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/turndown/node_modules/jsdom/lib/jsdom/living/helpers/form-controls.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/turndown/node_modules/jsdom/lib/jsdom/living/helpers/internal-constants.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/turndown/node_modules/jsdom/lib/jsdom/living/helpers/json.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/turndown/node_modules/jsdom/lib/jsdom/living/helpers/namespaces.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/turndown/node_modules/jsdom/lib/jsdom/living/helpers/ordered-set.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/turndown/node_modules/jsdom/lib/jsdom/living/helpers/runtime-script-errors.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/turndown/node_modules/jsdom/lib/jsdom/living/helpers/selectors.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/turndown/node_modules/jsdom/lib/jsdom/living/helpers/strings.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/turndown/node_modules/jsdom/lib/jsdom/living/helpers/stylesheets.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/turndown/node_modules/jsdom/lib/jsdom/living/helpers/svg/basic-types.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/turndown/node_modules/jsdom/lib/jsdom/living/helpers/text.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/turndown/node_modules/jsdom/lib/jsdom/living/helpers/traversal.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/turndown/node_modules/jsdom/lib/jsdom/living/helpers/validate-names.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/turndown/node_modules/jsdom/lib/jsdom/living/hr-time/Performance-impl.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/turndown/node_modules/jsdom/lib/jsdom/living/index.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/turndown/node_modules/jsdom/lib/jsdom/living/named-properties-window.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/turndown/node_modules/jsdom/lib/jsdom/living/navigator/Navigator-impl.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/turndown/node_modules/jsdom/lib/jsdom/living/navigator/NavigatorConcurrentHardware-impl.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/turndown/node_modules/jsdom/lib/jsdom/living/navigator/NavigatorCookies-impl.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/turndown/node_modules/jsdom/lib/jsdom/living/navigator/NavigatorID-impl.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/turndown/node_modules/jsdom/lib/jsdom/living/navigator/NavigatorLanguage-impl.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/turndown/node_modules/jsdom/lib/jsdom/living/navigator/NavigatorOnLine-impl.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/turndown/node_modules/jsdom/lib/jsdom/living/navigator/NavigatorPlugins-impl.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/turndown/node_modules/jsdom/lib/jsdom/living/node-document-position.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/turndown/node_modules/jsdom/lib/jsdom/living/node-filter.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/turndown/node_modules/jsdom/lib/jsdom/living/node-type.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/turndown/node_modules/jsdom/lib/jsdom/living/node.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/turndown/node_modules/jsdom/lib/jsdom/living/nodes/CDATASection-impl.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/turndown/node_modules/jsdom/lib/jsdom/living/nodes/CharacterData-impl.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/turndown/node_modules/jsdom/lib/jsdom/living/nodes/ChildNode-impl.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/turndown/node_modules/jsdom/lib/jsdom/living/nodes/Comment-impl.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/turndown/node_modules/jsdom/lib/jsdom/living/nodes/DOMImplementation-impl.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/turndown/node_modules/jsdom/lib/jsdom/living/nodes/DOMStringMap-impl.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/turndown/node_modules/jsdom/lib/jsdom/living/nodes/DOMTokenList-impl.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/turndown/node_modules/jsdom/lib/jsdom/living/nodes/Document-impl.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/turndown/node_modules/jsdom/lib/jsdom/living/nodes/DocumentFragment-impl.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/turndown/node_modules/jsdom/lib/jsdom/living/nodes/DocumentType-impl.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/turndown/node_modules/jsdom/lib/jsdom/living/nodes/Element-impl.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/turndown/node_modules/jsdom/lib/jsdom/living/nodes/ElementCSSInlineStyle-impl.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/turndown/node_modules/jsdom/lib/jsdom/living/nodes/ElementContentEditable-impl.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/turndown/node_modules/jsdom/lib/jsdom/living/nodes/GlobalEventHandlers-impl.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/turndown/node_modules/jsdom/lib/jsdom/living/nodes/HTMLAnchorElement-impl.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/turndown/node_modules/jsdom/lib/jsdom/living/nodes/HTMLAndSVGElementShared-impl.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/turndown/node_modules/jsdom/lib/jsdom/living/nodes/HTMLAreaElement-impl.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/turndown/node_modules/jsdom/lib/jsdom/living/nodes/HTMLAudioElement-impl.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/turndown/node_modules/jsdom/lib/jsdom/living/nodes/HTMLBRElement-impl.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/turndown/node_modules/jsdom/lib/jsdom/living/nodes/HTMLBaseElement-impl.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/turndown/node_modules/jsdom/lib/jsdom/living/nodes/HTMLBodyElement-impl.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/turndown/node_modules/jsdom/lib/jsdom/living/nodes/HTMLButtonElement-impl.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/turndown/node_modules/jsdom/lib/jsdom/living/nodes/HTMLCanvasElement-impl.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/turndown/node_modules/jsdom/lib/jsdom/living/nodes/HTMLCollection-impl.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/turndown/node_modules/jsdom/lib/jsdom/living/nodes/HTMLDListElement-impl.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/turndown/node_modules/jsdom/lib/jsdom/living/nodes/HTMLDataElement-impl.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/turndown/node_modules/jsdom/lib/jsdom/living/nodes/HTMLDataListElement-impl.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/turndown/node_modules/jsdom/lib/jsdom/living/nodes/HTMLDetailsElement-impl.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/turndown/node_modules/jsdom/lib/jsdom/living/nodes/HTMLDialogElement-impl.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/turndown/node_modules/jsdom/lib/jsdom/living/nodes/HTMLDirectoryElement-impl.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/turndown/node_modules/jsdom/lib/jsdom/living/nodes/HTMLDivElement-impl.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/turndown/node_modules/jsdom/lib/jsdom/living/nodes/HTMLElement-impl.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/turndown/node_modules/jsdom/lib/jsdom/living/nodes/HTMLEmbedElement-impl.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/turndown/node_modules/jsdom/lib/jsdom/living/nodes/HTMLFieldSetElement-impl.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/turndown/node_modules/jsdom/lib/jsdom/living/nodes/HTMLFontElement-impl.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/turndown/node_modules/jsdom/lib/jsdom/living/nodes/HTMLFormElement-impl.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/turndown/node_modules/jsdom/lib/jsdom/living/nodes/HTMLFrameElement-impl.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/turndown/node_modules/jsdom/lib/jsdom/living/nodes/HTMLFrameSetElement-impl.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/turndown/node_modules/jsdom/lib/jsdom/living/nodes/HTMLHRElement-impl.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/turndown/node_modules/jsdom/lib/jsdom/living/nodes/HTMLHeadElement-impl.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/turndown/node_modules/jsdom/lib/jsdom/living/nodes/HTMLHeadingElement-impl.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/turndown/node_modules/jsdom/lib/jsdom/living/nodes/HTMLHtmlElement-impl.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/turndown/node_modules/jsdom/lib/jsdom/living/nodes/HTMLHyperlinkElementUtils-impl.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/turndown/node_modules/jsdom/lib/jsdom/living/nodes/HTMLIFrameElement-impl.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/turndown/node_modules/jsdom/lib/jsdom/living/nodes/HTMLImageElement-impl.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/turndown/node_modules/jsdom/lib/jsdom/living/nodes/HTMLInputElement-impl.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/turndown/node_modules/jsdom/lib/jsdom/living/nodes/HTMLLIElement-impl.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/turndown/node_modules/jsdom/lib/jsdom/living/nodes/HTMLLabelElement-impl.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/turndown/node_modules/jsdom/lib/jsdom/living/nodes/HTMLLegendElement-impl.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/turndown/node_modules/jsdom/lib/jsdom/living/nodes/HTMLLinkElement-impl.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/turndown/node_modules/jsdom/lib/jsdom/living/nodes/HTMLMapElement-impl.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/turndown/node_modules/jsdom/lib/jsdom/living/nodes/HTMLMarqueeElement-impl.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/turndown/node_modules/jsdom/lib/jsdom/living/nodes/HTMLMediaElement-impl.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/turndown/node_modules/jsdom/lib/jsdom/living/nodes/HTMLMenuElement-impl.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/turndown/node_modules/jsdom/lib/jsdom/living/nodes/HTMLMetaElement-impl.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/turndown/node_modules/jsdom/lib/jsdom/living/nodes/HTMLMeterElement-impl.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/turndown/node_modules/jsdom/lib/jsdom/living/nodes/HTMLModElement-impl.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/turndown/node_modules/jsdom/lib/jsdom/living/nodes/HTMLOListElement-impl.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/turndown/node_modules/jsdom/lib/jsdom/living/nodes/HTMLObjectElement-impl.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/turndown/node_modules/jsdom/lib/jsdom/living/nodes/HTMLOptGroupElement-impl.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/turndown/node_modules/jsdom/lib/jsdom/living/nodes/HTMLOptionElement-impl.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/turndown/node_modules/jsdom/lib/jsdom/living/nodes/HTMLOptionsCollection-impl.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/turndown/node_modules/jsdom/lib/jsdom/living/nodes/HTMLOutputElement-impl.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/turndown/node_modules/jsdom/lib/jsdom/living/nodes/HTMLParagraphElement-impl.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/turndown/node_modules/jsdom/lib/jsdom/living/nodes/HTMLParamElement-impl.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/turndown/node_modules/jsdom/lib/jsdom/living/nodes/HTMLPictureElement-impl.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/turndown/node_modules/jsdom/lib/jsdom/living/nodes/HTMLPreElement-impl.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/turndown/node_modules/jsdom/lib/jsdom/living/nodes/HTMLProgressElement-impl.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/turndown/node_modules/jsdom/lib/jsdom/living/nodes/HTMLQuoteElement-impl.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/turndown/node_modules/jsdom/lib/jsdom/living/nodes/HTMLScriptElement-impl.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/turndown/node_modules/jsdom/lib/jsdom/living/nodes/HTMLSelectElement-impl.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/turndown/node_modules/jsdom/lib/jsdom/living/nodes/HTMLSourceElement-impl.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/turndown/node_modules/jsdom/lib/jsdom/living/nodes/HTMLSpanElement-impl.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/turndown/node_modules/jsdom/lib/jsdom/living/nodes/HTMLStyleElement-impl.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/turndown/node_modules/jsdom/lib/jsdom/living/nodes/HTMLTableCaptionElement-impl.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/turndown/node_modules/jsdom/lib/jsdom/living/nodes/HTMLTableCellElement-impl.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/turndown/node_modules/jsdom/lib/jsdom/living/nodes/HTMLTableColElement-impl.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/turndown/node_modules/jsdom/lib/jsdom/living/nodes/HTMLTableElement-impl.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/turndown/node_modules/jsdom/lib/jsdom/living/nodes/HTMLTableRowElement-impl.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/turndown/node_modules/jsdom/lib/jsdom/living/nodes/HTMLTableSectionElement-impl.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/turndown/node_modules/jsdom/lib/jsdom/living/nodes/HTMLTemplateElement-impl.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/turndown/node_modules/jsdom/lib/jsdom/living/nodes/HTMLTextAreaElement-impl.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/turndown/node_modules/jsdom/lib/jsdom/living/nodes/HTMLTimeElement-impl.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/turndown/node_modules/jsdom/lib/jsdom/living/nodes/HTMLTitleElement-impl.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/turndown/node_modules/jsdom/lib/jsdom/living/nodes/HTMLTrackElement-impl.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/turndown/node_modules/jsdom/lib/jsdom/living/nodes/HTMLUListElement-impl.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/turndown/node_modules/jsdom/lib/jsdom/living/nodes/HTMLUnknownElement-impl.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/turndown/node_modules/jsdom/lib/jsdom/living/nodes/HTMLVideoElement-impl.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/turndown/node_modules/jsdom/lib/jsdom/living/nodes/LinkStyle-impl.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/turndown/node_modules/jsdom/lib/jsdom/living/nodes/Node-impl.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/turndown/node_modules/jsdom/lib/jsdom/living/nodes/NodeList-impl.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/turndown/node_modules/jsdom/lib/jsdom/living/nodes/NonDocumentTypeChildNode-impl.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/turndown/node_modules/jsdom/lib/jsdom/living/nodes/NonElementParentNode-impl.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/turndown/node_modules/jsdom/lib/jsdom/living/nodes/ParentNode-impl.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/turndown/node_modules/jsdom/lib/jsdom/living/nodes/ProcessingInstruction-impl.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/turndown/node_modules/jsdom/lib/jsdom/living/nodes/SVGElement-impl.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/turndown/node_modules/jsdom/lib/jsdom/living/nodes/SVGGraphicsElement-impl.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/turndown/node_modules/jsdom/lib/jsdom/living/nodes/SVGSVGElement-impl.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/turndown/node_modules/jsdom/lib/jsdom/living/nodes/SVGTests-impl.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/turndown/node_modules/jsdom/lib/jsdom/living/nodes/Text-impl.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/turndown/node_modules/jsdom/lib/jsdom/living/nodes/WindowEventHandlers-impl.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/turndown/node_modules/jsdom/lib/jsdom/living/nodes/XMLDocument-impl.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/turndown/node_modules/jsdom/lib/jsdom/living/post-message.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/turndown/node_modules/jsdom/lib/jsdom/living/register-elements.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/turndown/node_modules/jsdom/lib/jsdom/living/svg/SVGAnimatedString-impl.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/turndown/node_modules/jsdom/lib/jsdom/living/svg/SVGListBase.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/turndown/node_modules/jsdom/lib/jsdom/living/svg/SVGNumber-impl.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/turndown/node_modules/jsdom/lib/jsdom/living/svg/SVGStringList-impl.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/turndown/node_modules/jsdom/lib/jsdom/living/traversal/NodeIterator-impl.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/turndown/node_modules/jsdom/lib/jsdom/living/traversal/TreeWalker-impl.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/turndown/node_modules/jsdom/lib/jsdom/living/traversal/helpers.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/turndown/node_modules/jsdom/lib/jsdom/living/websockets/WebSocket-impl-browser.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/turndown/node_modules/jsdom/lib/jsdom/living/websockets/WebSocket-impl.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/turndown/node_modules/jsdom/lib/jsdom/living/webstorage/Storage-impl.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/turndown/node_modules/jsdom/lib/jsdom/living/window/BarProp-impl.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/turndown/node_modules/jsdom/lib/jsdom/living/window/External-impl.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/turndown/node_modules/jsdom/lib/jsdom/living/window/History-impl.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/turndown/node_modules/jsdom/lib/jsdom/living/window/History.webidl</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/turndown/node_modules/jsdom/lib/jsdom/living/window/Location-impl.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/turndown/node_modules/jsdom/lib/jsdom/living/window/Screen-impl.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/turndown/node_modules/jsdom/lib/jsdom/living/window/SessionHistory.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/turndown/node_modules/jsdom/lib/jsdom/living/window/navigation.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/turndown/node_modules/jsdom/lib/jsdom/living/xhr-sync-worker.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/turndown/node_modules/jsdom/lib/jsdom/living/xhr-utils.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/turndown/node_modules/jsdom/lib/jsdom/living/xhr/FormData-impl.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/turndown/node_modules/jsdom/lib/jsdom/living/xhr/XMLHttpRequestEventTarget-impl.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/turndown/node_modules/jsdom/lib/jsdom/living/xhr/XMLHttpRequestUpload-impl.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/turndown/node_modules/jsdom/lib/jsdom/living/xmlhttprequest-symbols.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/turndown/node_modules/jsdom/lib/jsdom/living/xmlhttprequest.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/turndown/node_modules/jsdom/lib/jsdom/named-properties-tracker.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/turndown/node_modules/jsdom/lib/jsdom/utils.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/turndown/node_modules/jsdom/lib/jsdom/virtual-console.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/turndown/node_modules/jsdom/lib/jsdom/vm-shim.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/turndown/node_modules/jsdom/lib/old-api.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/turndown/node_modules/jsdom/lib/old-api.md</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/turndown/node_modules/jsdom/package.json</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/turndown/node_modules/mime-db/HISTORY.md</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/turndown/node_modules/mime-db/LICENSE</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/turndown/node_modules/mime-db/README.md</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/turndown/node_modules/mime-db/db.json</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/turndown/node_modules/mime-db/index.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/turndown/node_modules/mime-db/package.json</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/turndown/node_modules/mime-types/HISTORY.md</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/turndown/node_modules/mime-types/LICENSE</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/turndown/node_modules/mime-types/README.md</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/turndown/node_modules/mime-types/index.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/turndown/node_modules/mime-types/package.json</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/turndown/node_modules/oauth-sign/LICENSE</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/turndown/node_modules/oauth-sign/README.md</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/turndown/node_modules/oauth-sign/index.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/turndown/node_modules/oauth-sign/package.json</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/turndown/node_modules/punycode/LICENSE-MIT.txt</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/turndown/node_modules/punycode/README.md</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/turndown/node_modules/punycode/package.json</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/turndown/node_modules/punycode/punycode.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/turndown/node_modules/qs/.editorconfig</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/turndown/node_modules/qs/.eslintignore</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/turndown/node_modules/qs/.eslintrc</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/turndown/node_modules/qs/CHANGELOG.md</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/turndown/node_modules/qs/LICENSE</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/turndown/node_modules/qs/README.md</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/turndown/node_modules/qs/dist/qs.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/turndown/node_modules/qs/lib/formats.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/turndown/node_modules/qs/lib/index.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/turndown/node_modules/qs/lib/parse.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/turndown/node_modules/qs/lib/stringify.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/turndown/node_modules/qs/lib/utils.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/turndown/node_modules/qs/package.json</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/turndown/node_modules/qs/test/.eslintrc</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/turndown/node_modules/qs/test/index.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/turndown/node_modules/qs/test/parse.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/turndown/node_modules/qs/test/stringify.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/turndown/node_modules/qs/test/utils.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/turndown/node_modules/request/CHANGELOG.md</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/turndown/node_modules/request/LICENSE</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/turndown/node_modules/request/README.md</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/turndown/node_modules/request/index.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/turndown/node_modules/request/lib/auth.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/turndown/node_modules/request/lib/cookies.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/turndown/node_modules/request/lib/getProxyFromURI.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/turndown/node_modules/request/lib/har.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/turndown/node_modules/request/lib/hawk.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/turndown/node_modules/request/lib/helpers.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/turndown/node_modules/request/lib/multipart.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/turndown/node_modules/request/lib/oauth.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/turndown/node_modules/request/lib/querystring.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/turndown/node_modules/request/lib/redirect.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/turndown/node_modules/request/lib/tunnel.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/turndown/node_modules/request/node_modules/tough-cookie/LICENSE</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/turndown/node_modules/request/node_modules/tough-cookie/README.md</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/turndown/node_modules/request/node_modules/tough-cookie/lib/cookie.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/turndown/node_modules/request/node_modules/tough-cookie/lib/memstore.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/turndown/node_modules/request/node_modules/tough-cookie/lib/pathMatch.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/turndown/node_modules/request/node_modules/tough-cookie/lib/permuteDomain.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/turndown/node_modules/request/node_modules/tough-cookie/lib/pubsuffix-psl.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/turndown/node_modules/request/node_modules/tough-cookie/lib/store.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/turndown/node_modules/request/node_modules/tough-cookie/package.json</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/turndown/node_modules/request/package.json</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/turndown/node_modules/request/request.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/turndown/node_modules/tunnel-agent/LICENSE</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/turndown/node_modules/tunnel-agent/README.md</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/turndown/node_modules/tunnel-agent/index.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/turndown/node_modules/tunnel-agent/package.json</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/turndown/package.json</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/tweetnacl/.npmignore</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/tweetnacl/AUTHORS.md</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/tweetnacl/CHANGELOG.md</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/tweetnacl/LICENSE</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/tweetnacl/PULL_REQUEST_TEMPLATE.md</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/tweetnacl/README.md</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/tweetnacl/nacl-fast.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/tweetnacl/nacl-fast.min.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/tweetnacl/nacl.d.ts</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/tweetnacl/nacl.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/tweetnacl/nacl.min.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/tweetnacl/package.json</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/type-check/LICENSE</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/type-check/README.md</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/type-check/lib/check.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/type-check/lib/index.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/type-check/lib/parse-type.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/type-check/package.json</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/typedarray/.travis.yml</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/typedarray/LICENSE</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/typedarray/example/tarray.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/typedarray/index.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/typedarray/package.json</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/typedarray/readme.markdown</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/typedarray/test/server/undef_globals.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/typedarray/test/tarray.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/typo-js/README.md</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/typo-js/dictionaries/en_US/README.md</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/typo-js/dictionaries/en_US/en_US.aff</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/typo-js/dictionaries/en_US/en_US.dic</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/typo-js/package.json</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/typo-js/typo.js</Path>
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/ua-parser-js/.travis.yml</Path>
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/ua-parser-js/bower.json</Path>
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/ua-parser-js/dist/ua-parser.html</Path>
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/ua-parser-js/dist/ua-parser.min.js</Path>
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/ua-parser-js/dist/ua-parser.pack.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/ua-parser-js/license.md</Path>
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/ua-parser-js/package.js</Path>
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/ua-parser-js/package.json</Path>
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/ua-parser-js/readme.md</Path>
@@ -9179,6 +12268,16 @@
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/underscore-plus/appveyor.yml</Path>
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/underscore-plus/lib/underscore-plus.js</Path>
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/underscore-plus/package.json</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/underscore.string/.npmignore</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/underscore.string/.travis.yml</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/underscore.string/README.markdown</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/underscore.string/bower.json</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/underscore.string/component.json</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/underscore.string/foo.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/underscore.string/gulpfile.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/underscore.string/lib/underscore.string.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/underscore.string/libpeerconnection.log</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/underscore.string/package.json</Path>
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/underscore/LICENSE</Path>
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/underscore/README.md</Path>
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/underscore/package.json</Path>
@@ -9199,6 +12298,64 @@
<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>
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/unzip-response/readme.md</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/uri-js/README.md</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/uri-js/bower.json</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/uri-js/dist/es5/uri.all.d.ts</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/uri-js/dist/es5/uri.all.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/uri-js/dist/es5/uri.all.js.map</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/uri-js/dist/es5/uri.all.min.d.ts</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/uri-js/dist/es5/uri.all.min.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/uri-js/dist/es5/uri.all.min.js.map</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/uri-js/dist/esnext/index.d.ts</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/uri-js/dist/esnext/index.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/uri-js/dist/esnext/index.js.map</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/uri-js/dist/esnext/regexps-iri.d.ts</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/uri-js/dist/esnext/regexps-iri.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/uri-js/dist/esnext/regexps-iri.js.map</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/uri-js/dist/esnext/regexps-uri.d.ts</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/uri-js/dist/esnext/regexps-uri.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/uri-js/dist/esnext/regexps-uri.js.map</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/uri-js/dist/esnext/schemes/http.d.ts</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/uri-js/dist/esnext/schemes/http.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/uri-js/dist/esnext/schemes/http.js.map</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/uri-js/dist/esnext/schemes/https.d.ts</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/uri-js/dist/esnext/schemes/https.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/uri-js/dist/esnext/schemes/https.js.map</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/uri-js/dist/esnext/schemes/mailto.d.ts</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/uri-js/dist/esnext/schemes/mailto.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/uri-js/dist/esnext/schemes/mailto.js.map</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/uri-js/dist/esnext/schemes/urn-uuid.d.ts</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/uri-js/dist/esnext/schemes/urn-uuid.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/uri-js/dist/esnext/schemes/urn-uuid.js.map</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/uri-js/dist/esnext/schemes/urn.d.ts</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/uri-js/dist/esnext/schemes/urn.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/uri-js/dist/esnext/schemes/urn.js.map</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/uri-js/dist/esnext/uri.d.ts</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/uri-js/dist/esnext/uri.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/uri-js/dist/esnext/uri.js.map</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/uri-js/dist/esnext/util.d.ts</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/uri-js/dist/esnext/util.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/uri-js/dist/esnext/util.js.map</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/uri-js/package.json</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/uri-js/rollup.config.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/uri-js/src/index.ts</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/uri-js/src/punycode.d.ts</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/uri-js/src/regexps-iri.ts</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/uri-js/src/regexps-uri.ts</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/uri-js/src/schemes/http.ts</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/uri-js/src/schemes/https.ts</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/uri-js/src/schemes/mailto.ts</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/uri-js/src/schemes/urn-uuid.ts</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/uri-js/src/schemes/urn.ts</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/uri-js/src/uri.ts</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/uri-js/src/util.ts</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/uri-js/tests/qunit.css</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/uri-js/tests/qunit.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/uri-js/tests/test-es5-min.html</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/uri-js/tests/test-es5.html</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/uri-js/tests/tests.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/uri-js/tsconfig.json</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/uri-js/yarn.lock</Path>
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/url-parse-lax/index.js</Path>
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/url-parse-lax/license</Path>
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/url-parse-lax/package.json</Path>
@@ -9230,10 +12387,64 @@
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/uuid/v3.js</Path>
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/uuid/v4.js</Path>
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/uuid/v5.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/verror/.npmignore</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/verror/CHANGES.md</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/verror/CONTRIBUTING.md</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/verror/LICENSE</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/verror/README.md</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/verror/lib/verror.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/verror/node_modules/assert-plus/AUTHORS</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/verror/node_modules/assert-plus/CHANGES.md</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/verror/node_modules/assert-plus/README.md</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/verror/node_modules/assert-plus/assert.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/verror/node_modules/assert-plus/package.json</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/verror/package.json</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/w3c-hr-time/CHANGELOG.md</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/w3c-hr-time/README.md</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/w3c-hr-time/coverage/hr-time/lib</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/w3c-hr-time/index.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/w3c-hr-time/lib/calculate-clock-offset.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/w3c-hr-time/lib/clock-is-accurate.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/w3c-hr-time/lib/global-monotonic-clock.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/w3c-hr-time/lib/performance.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/w3c-hr-time/lib/utils.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/w3c-hr-time/package.json</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/webidl-conversions/LICENSE.md</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/webidl-conversions/README.md</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/webidl-conversions/lib/index.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/webidl-conversions/package.json</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/whatwg-encoding/LICENSE.txt</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/whatwg-encoding/README.md</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/whatwg-encoding/lib/labels-to-names.json</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/whatwg-encoding/lib/supported-names.json</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/whatwg-encoding/lib/whatwg-encoding.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/whatwg-encoding/package.json</Path>
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/whatwg-fetch/LICENSE</Path>
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/whatwg-fetch/README.md</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/whatwg-fetch/dist/fetch.umd.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/whatwg-fetch/dist/fetch.umd.js.flow</Path>
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/whatwg-fetch/fetch.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/whatwg-fetch/fetch.js.flow</Path>
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/whatwg-fetch/package.json</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/whatwg-mimetype/LICENSE.txt</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/whatwg-mimetype/README.md</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/whatwg-mimetype/lib/mime-type.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/whatwg-mimetype/lib/parser.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/whatwg-mimetype/lib/serializer.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/whatwg-mimetype/lib/utils.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/whatwg-mimetype/package.json</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/whatwg-url/LICENSE.txt</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/whatwg-url/README.md</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/whatwg-url/lib/URL-impl.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/whatwg-url/lib/URL.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/whatwg-url/lib/URLSearchParams-impl.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/whatwg-url/lib/URLSearchParams.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/whatwg-url/lib/infra.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/whatwg-url/lib/public-api.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/whatwg-url/lib/url-state-machine.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/whatwg-url/lib/urlencoded.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/whatwg-url/lib/utils.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/whatwg-url/package.json</Path>
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/wordwrap/LICENSE</Path>
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/wordwrap/README.markdown</Path>
<Path fileType="data">/usr/share/boostnote/resources/app/node_modules/wordwrap/example/center.js</Path>
@@ -9247,12 +12458,30 @@
<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/write-file-atomic/LICENSE</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/write-file-atomic/README.md</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/write-file-atomic/index.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/write-file-atomic/package.json</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/ws/LICENSE</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/ws/README.md</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/ws/index.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/ws/lib/buffer-util.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/ws/lib/constants.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/ws/lib/event-target.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/ws/lib/extension.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/ws/lib/permessage-deflate.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/ws/lib/receiver.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/ws/lib/sender.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/ws/lib/validation.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/ws/lib/websocket-server.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/ws/lib/websocket.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/ws/package.json</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/xml-name-validator/LICENSE.txt</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/xml-name-validator/README.md</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/xml-name-validator/lib/generated-parser.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/xml-name-validator/lib/grammar.pegjs</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/xml-name-validator/lib/xml-name-validator.js</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/node_modules/xml-name-validator/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>
@@ -9416,6 +12645,7 @@
<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/copyFile-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>
@@ -9423,6 +12653,7 @@
<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/exportStorage-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>
<Path fileType="data">/usr/share/boostnote/resources/app/tests/dataApi/moveNote-test.js</Path>
@@ -9442,6 +12673,7 @@
<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/contextMenuBuilder.test.js</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>
@@ -9449,27 +12681,29 @@
<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/markdown-toc-generator-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>
<Path fileType="data">/usr/share/boostnote/resources/app/tests/lib/snapshots/markdown-test.js.snap</Path>
+ <Path fileType="data">/usr/share/boostnote/resources/app/tests/lib/spellcheck.test.js</Path>
<Path fileType="data">/usr/share/boostnote/resources/app/yarn.lock</Path>
<Path fileType="data">/usr/share/boostnote/resources/electron.asar</Path>
- <Path fileType="data">/usr/share/boostnote/snapshot_blob.bin</Path>
<Path fileType="data">/usr/share/boostnote/ui_resources_200_percent.pak</Path>
+ <Path fileType="data">/usr/share/boostnote/v8_context_snapshot.bin</Path>
<Path fileType="data">/usr/share/boostnote/version</Path>
<Path fileType="data">/usr/share/boostnote/views_resources_200_percent.pak</Path>
<Path fileType="data">/usr/share/pixmaps/boostnote.png</Path>
</Files>
</Package>
<History>
- <Update release="3">
- <Date>2018-08-05</Date>
- <Version>0.11.8</Version>
+ <Update release="4">
+ <Date>2019-01-05</Date>
+ <Version>0.11.12</Version>
<Comment>Packaging update</Comment>
- <Name>Pierre-Yves</Name>
- <Email>pyu@riseup.net</Email>
+ <Name>F. von Gellhorn</Name>
+ <Email>flinux@vongellhorn.ch</Email>
</Update>
</History>
-</PISI>
+</PISI>
\ No newline at end of file

File Metadata

Mime Type
text/plain
Expires
May 26 2023, 12:13 AM (11 w, 18 h ago)
Storage Engine
blob
Storage Format
Raw Data
Storage Handle
5810320
Default Alt Text
D4962.id12078.diff (651 KB)

Event Timeline