summaryrefslogtreecommitdiff
path: root/package.json (follow)
Commit message (Collapse)AuthorAgeFilesLines
* Upgrade reveal.js to 3.6.0 and useCDN option for CSS includeWu Cheng-Han2018-01-291-1/+1
|
* Merge pull request #506 from erasys/minioChristoph (Sheogorath) Kern2018-01-231-0/+1
|\ | | | | Add support for minio
| * Add support for minioMarc Deop2017-08-301-0/+1
| |
* | Merge pull request #598 from xxyy/feature/cspChristoph (Sheogorath) Kern2018-01-221-0/+1
|\ \ | | | | | | Implement basic CSP support
| * | Revert "Load js-url lib using legacy-loader"Literallie2017-11-021-1/+0
| | | | | | | | | | | | | | | | | | | | | | | | Didn't work in Firefox for some reason. `[Script Loader] ReferenceError: module is not defined` This reverts commit 5b83deb043296c23ff912a2472703c1f7faddb4b.
| * | Load js-url lib using legacy-loaderLiterallie2017-10-221-0/+1
| | | | | | | | | | | | Doesn't use eval, plus no window object access
| * | CSP: Add nonce to slide view inline JSLiterallie2017-10-221-0/+1
| | |
* | | Release 1.0.1-ceSheogorath2018-01-191-1/+1
| | |
* | | Release 1.0.0-ceSheogorath2018-01-181-1/+1
| | |
* | | Merge pull request #578 from hackmdio/licenseChangeAgreementMax Wu2017-12-071-1/+1
|\ \ \ | | | | | | | | License Change Agreement
| * | | Update license field in package.jsonWu Cheng-Han2017-10-131-1/+1
| | |/ | |/|
* | | Initial support for SAML authenticationNorihito Nakae2017-11-281-0/+1
| | |
* | | Add mattermost authenticationChristoph Witzany2017-10-311-0/+2
| | |
* | | Upgrade mermaid to v7.1.0, fix #600Peter Dave Hello2017-10-301-1/+1
| | |
* | | Merge pull request #574 from PeterDaveHello/README.md-Table-of-ContentsSheogorath2017-10-271-1/+3
|\ \ \ | |_|/ |/| | Add "Table of Contents" in README.md
| * | Integrate npm package "doctoc" to update README.mdPeter Dave Hello2017-10-131-1/+3
| |/
* / Add jsonlint script to ensure all json files are validPeter Dave Hello2017-10-141-1/+3
|/
* Use git URLs in package.jsonBryan Davis2017-07-011-2/+2
| | | | | | | | | Using the "github:..." form to declare a dependency in package.json makes npm attempt to install the package using an ssh clone rather than an https clone. Some deployment environments may not allow ssh access to external servers which will prevent the clones from succeeding. Using the "git+https://..." form will clone the same repo from GitHub without requiring ssh connectivity.
* Use non-zero exit codes when build failsSheogorath2017-06-031-1/+1
|
* Merge branch 'master' into BackendRefactorMax Wu2017-05-141-0/+1
|\
| * Load statusbar template by string-loaderYukai Huang2017-05-071-1/+2
| |
* | refactor(config.js): Extract config fileBoHong Li2017-05-081-1/+2
|/ | | | | * Separate different config source to each files * Freeze config object
* chore(build): Upgrade uws to 0.14.1, other npm version have been removedWu Cheng-Han2017-03-291-1/+1
|
* style: Fix missing newline in variablesWu Cheng-Han2017-03-291-1/+2
|
* Mark as 0.5.1Wu Cheng-Han2017-03-231-1/+1
|
* Merge pull request #387 from hackmdio/cm-refactorMax Wu2017-03-141-0/+21
|\ | | | | Extract CodeMirror instance
| * Add inlineAttachment to globalYukai Huang2017-03-131-1/+2
| |
| * Add standarjs globalsYukai Huang2017-03-131-0/+20
| |
* | Update to fix pagination error in list.js over v1.5.0Wu Cheng-Han2017-03-141-2/+1
|/
* Remove eslintBoHong Li2017-03-131-3/+2
| | | | | | | 1. Remove eslint , bacause we use JavaScript Standard Style. 2. Add lts/boron version to travis CI, web use it in docker version Signed-off-by: BoHong Li <a60814billy@gmail.com>
* Use JavaScript Standard StyleBoHong Li2017-03-081-1/+8
| | | | | Introduce JavaScript Standard Style as project style rule, and fixed all fail on backend code.
* Using package.json to test lint insteadbananaappletw2017-02-161-1/+2
| | | | Exclude *.min.js from eslint
* Update node dependency up to 6.x in package.jsonbananaappletw2017-02-151-1/+1
|
* Add travis cibananaappletw2017-02-151-0/+2
|
* Update webpack config to use parallel uglify plugin to speed up production buildWu Cheng-Han2017-02-031-1/+2
|
* Update to use babel-polyfill to support ES6 features in old browsersWu Cheng-Han2017-02-031-0/+1
|
* Upgrade mermaid to support class diagramWu Cheng-Han2017-02-021-1/+1
|
* Upgrade viz.js to fix manual workaround and get smaller file sizeWu Cheng-Han2017-02-021-1/+1
|
* Revert experimental vue for nowYukai Huang2017-01-211-3/+0
|
* Merge branch 'master' into frontend-nextYukai Huang2017-01-131-0/+1
|\
| * Merge pull request #279 from alecdwm/ldap-authMax Wu2017-01-091-0/+1
| |\ | | | | | | Support for LDAP server authentication
| | * Use randomcolor not seedrandom for avatar backgroundsalecdwm2017-01-061-1/+0
| | |
| | * Profile pictures for LDAP usersalecdwm2017-01-061-0/+1
| | |
| | * Initial support for LDAP server authenticationalecdwm2016-12-131-0/+1
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Limitations as of this commit: - tlsOptions can only be specified in config.json, not as env vars - authentication failures are not yet gracefully handled by the UI - instead the error message is shown on a blank page (/auth/ldap) - no email address is associated with the LDAP user's account - no picture/profile URL is associated with the LDAP user's account - we might have to generate our own access + refresh tokens, because we aren't using oauth. The currently generated tokens are just a placeholder. - 'LDAP Sign in' needs to be translated to each locale
* | | Revert "Rename npm script"bananaappletw2017-01-041-2/+2
| | | | | | | | | | | | This reverts commit ed83dfc862768572eab0c2aed629b1700ac9e224.
* | | Merge branch 'master' into frontend-nextYukai Huang2017-01-021-7/+7
|\| |
| * | Mark as 0.5.0Wu Cheng-Han2017-01-021-1/+1
| | |
| * | Update dependenciesWu Cheng-Han2017-01-021-6/+6
| | |
* | | Basic setup for Vue appYukai Huang2016-12-241-0/+2
| | |
* | | Install vue and babel dependencyYukai Huang2016-12-241-0/+7
|/ /