2016-08-17 00:56:55 +00:00
|
|
|
{
|
|
|
|
"name": "wiki",
|
2017-09-30 02:32:43 +00:00
|
|
|
"version": "2.0.0",
|
2016-08-17 00:56:55 +00:00
|
|
|
"description": "A modern, lightweight and powerful wiki app built on NodeJS, Git and Markdown",
|
2017-07-21 21:40:26 +00:00
|
|
|
"main": "wiki.js",
|
2016-08-17 00:56:55 +00:00
|
|
|
"scripts": {
|
2017-02-14 07:17:25 +00:00
|
|
|
"start": "node wiki start",
|
2017-02-14 20:27:08 +00:00
|
|
|
"stop": "node wiki stop",
|
2017-05-13 21:03:32 +00:00
|
|
|
"restart": "node wiki restart",
|
2018-01-27 05:20:49 +00:00
|
|
|
"dev": "node wiki dev",
|
|
|
|
"build": "webpack --profile --config dev/webpack/webpack.prod.js",
|
|
|
|
"watch": "webpack --config dev/webpack/webpack.dev.js",
|
2018-03-18 02:41:16 +00:00
|
|
|
"test": "eslint --format codeframe --ext .js,.vue . && pug-lint server/views && jest"
|
2016-08-17 00:56:55 +00:00
|
|
|
},
|
2017-02-19 21:13:51 +00:00
|
|
|
"bin": {
|
|
|
|
"wiki": "wiki.js"
|
|
|
|
},
|
2016-08-17 00:56:55 +00:00
|
|
|
"repository": {
|
|
|
|
"type": "git",
|
|
|
|
"url": "git+https://github.com/Requarks/wiki.git"
|
|
|
|
},
|
|
|
|
"keywords": [
|
|
|
|
"wiki",
|
|
|
|
"wikis",
|
|
|
|
"docs",
|
|
|
|
"documentation",
|
|
|
|
"markdown",
|
|
|
|
"guides"
|
|
|
|
],
|
|
|
|
"author": "Nicolas Giard",
|
|
|
|
"license": "AGPL-3.0",
|
|
|
|
"bugs": {
|
|
|
|
"url": "https://github.com/Requarks/wiki/issues"
|
|
|
|
},
|
|
|
|
"homepage": "https://github.com/Requarks/wiki#readme",
|
|
|
|
"engines": {
|
2018-06-04 04:41:29 +00:00
|
|
|
"node": ">=8.11"
|
2016-08-17 00:56:55 +00:00
|
|
|
},
|
|
|
|
"dependencies": {
|
2018-04-29 21:55:36 +00:00
|
|
|
"apollo-server-express": "1.3.6",
|
2017-08-07 01:14:20 +00:00
|
|
|
"auto-load": "3.0.0",
|
2018-03-05 22:27:30 +00:00
|
|
|
"axios": "0.18.0",
|
2017-08-07 01:14:20 +00:00
|
|
|
"bcryptjs-then": "1.0.1",
|
2017-10-07 01:35:02 +00:00
|
|
|
"bluebird": "3.5.1",
|
2018-05-19 20:40:07 +00:00
|
|
|
"body-parser": "1.18.3",
|
2018-06-04 04:41:29 +00:00
|
|
|
"bugsnag": "2.4.0",
|
2018-05-19 20:40:07 +00:00
|
|
|
"bull": "3.4.2",
|
2017-08-07 01:14:20 +00:00
|
|
|
"cheerio": "1.0.0-rc.2",
|
|
|
|
"child-process-promise": "2.2.1",
|
2018-04-29 21:55:36 +00:00
|
|
|
"chokidar": "2.0.3",
|
2018-03-05 22:27:30 +00:00
|
|
|
"compression": "1.7.2",
|
2018-01-28 02:40:51 +00:00
|
|
|
"connect-redis": "3.3.3",
|
2017-08-07 01:14:20 +00:00
|
|
|
"cookie-parser": "1.4.3",
|
2018-01-28 05:40:25 +00:00
|
|
|
"cors": "2.8.4",
|
2018-02-04 01:14:29 +00:00
|
|
|
"dependency-graph": "0.7.0",
|
2018-01-28 02:40:51 +00:00
|
|
|
"diff2html": "2.3.3",
|
2017-09-25 03:22:33 +00:00
|
|
|
"dotize": "^0.2.0",
|
2018-03-17 02:51:56 +00:00
|
|
|
"execa": "0.10.0",
|
|
|
|
"express": "4.16.3",
|
2017-05-19 00:36:25 +00:00
|
|
|
"express-brute": "1.0.1",
|
2017-08-07 01:14:20 +00:00
|
|
|
"express-brute-redis": "0.0.1",
|
2017-09-30 02:32:43 +00:00
|
|
|
"express-session": "1.15.6",
|
2018-05-19 20:40:07 +00:00
|
|
|
"file-type": "8.0.0",
|
2017-08-07 01:14:20 +00:00
|
|
|
"filesize.js": "1.0.2",
|
2018-05-19 20:40:07 +00:00
|
|
|
"follow-redirects": "1.5.0",
|
2018-05-12 20:13:04 +00:00
|
|
|
"fs-extra": "6.0.1",
|
2018-05-06 21:33:41 +00:00
|
|
|
"getos": "3.1.0",
|
2018-03-17 02:51:56 +00:00
|
|
|
"graphql": "0.13.2",
|
2018-04-29 21:55:36 +00:00
|
|
|
"graphql-list-fields": "2.0.2",
|
2018-06-04 04:41:29 +00:00
|
|
|
"graphql-tools": "3.0.2",
|
2018-05-19 20:40:07 +00:00
|
|
|
"i18next": "11.3.2",
|
2018-03-05 22:27:30 +00:00
|
|
|
"i18next-express-middleware": "1.1.1",
|
2017-10-07 01:35:02 +00:00
|
|
|
"i18next-localstorage-cache": "1.1.1",
|
2017-08-07 01:14:20 +00:00
|
|
|
"i18next-node-fs-backend": "1.0.0",
|
2017-12-17 04:41:16 +00:00
|
|
|
"image-size": "0.6.2",
|
|
|
|
"ioredis": "3.2.2",
|
2018-06-04 04:41:29 +00:00
|
|
|
"js-yaml": "3.12.0",
|
|
|
|
"jsonwebtoken": "8.2.2",
|
2017-12-17 04:41:16 +00:00
|
|
|
"klaw": "2.1.1",
|
2018-05-19 20:40:07 +00:00
|
|
|
"knex": "0.14.6",
|
2018-04-29 21:55:36 +00:00
|
|
|
"lodash": "4.17.10",
|
2018-02-17 23:17:25 +00:00
|
|
|
"markdown-it": "8.4.1",
|
2017-08-07 01:14:20 +00:00
|
|
|
"markdown-it-abbr": "1.0.4",
|
|
|
|
"markdown-it-anchor": "4.0.0",
|
2018-06-04 04:41:29 +00:00
|
|
|
"markdown-it-attrs": "2.1.0",
|
2017-08-07 01:14:20 +00:00
|
|
|
"markdown-it-emoji": "1.4.0",
|
2018-03-09 05:33:43 +00:00
|
|
|
"markdown-it-expand-tabs": "1.0.13",
|
2016-10-15 03:31:15 +00:00
|
|
|
"markdown-it-external-links": "0.0.6",
|
2017-08-07 01:14:20 +00:00
|
|
|
"markdown-it-footnote": "3.0.1",
|
2018-02-25 17:59:59 +00:00
|
|
|
"markdown-it-imsize": "2.0.1",
|
|
|
|
"markdown-it-mark": "2.0.0",
|
2017-08-07 01:14:20 +00:00
|
|
|
"markdown-it-mathjax": "2.0.0",
|
2018-02-25 17:59:59 +00:00
|
|
|
"markdown-it-sub": "1.0.0",
|
|
|
|
"markdown-it-sup": "1.0.0",
|
2018-03-09 05:33:43 +00:00
|
|
|
"markdown-it-task-lists": "2.1.1",
|
2018-04-29 21:55:36 +00:00
|
|
|
"mathjax-node": "2.1.0",
|
2018-02-17 23:17:25 +00:00
|
|
|
"mime-types": "2.1.18",
|
2018-06-04 04:41:29 +00:00
|
|
|
"moment": "2.22.2",
|
2018-05-19 20:40:07 +00:00
|
|
|
"moment-timezone": "0.5.17",
|
|
|
|
"mongodb": "3.1.0-beta4",
|
|
|
|
"mssql": "4.1.0",
|
2017-08-07 01:14:20 +00:00
|
|
|
"multer": "1.3.0",
|
2018-03-25 02:35:47 +00:00
|
|
|
"mysql2": "1.5.3",
|
2017-08-07 01:14:20 +00:00
|
|
|
"node-2fa": "1.1.2",
|
2018-03-05 20:49:36 +00:00
|
|
|
"oauth2orize": "1.11.0",
|
2018-06-04 04:41:29 +00:00
|
|
|
"objection": "1.1.10",
|
2018-05-12 20:13:04 +00:00
|
|
|
"ora": "2.1.0",
|
2017-08-19 01:21:29 +00:00
|
|
|
"passport": "0.4.0",
|
2017-12-31 19:40:28 +00:00
|
|
|
"passport-auth0": "0.6.1",
|
2017-04-10 01:13:53 +00:00
|
|
|
"passport-azure-ad-oauth2": "0.0.4",
|
2017-12-31 19:40:28 +00:00
|
|
|
"passport-discord": "0.1.3",
|
2018-01-15 03:05:08 +00:00
|
|
|
"passport-dropbox-oauth2": "1.1.0",
|
2017-08-07 01:14:20 +00:00
|
|
|
"passport-facebook": "2.1.1",
|
2017-09-30 02:32:43 +00:00
|
|
|
"passport-github2": "0.1.11",
|
2017-08-07 01:14:20 +00:00
|
|
|
"passport-google-oauth20": "1.0.0",
|
|
|
|
"passport-ldapauth": "2.0.0",
|
|
|
|
"passport-local": "1.0.0",
|
2018-01-15 03:05:08 +00:00
|
|
|
"passport-oauth2": "1.4.0",
|
2017-04-02 23:56:47 +00:00
|
|
|
"passport-slack": "0.0.7",
|
2017-12-31 19:40:28 +00:00
|
|
|
"passport-twitch": "1.0.3",
|
2017-08-07 01:14:20 +00:00
|
|
|
"passport-windowslive": "1.0.2",
|
2018-05-19 20:40:07 +00:00
|
|
|
"pg": "7.4.3",
|
2017-08-07 01:14:20 +00:00
|
|
|
"pg-hstore": "2.3.2",
|
2018-05-19 20:40:07 +00:00
|
|
|
"pm2": "2.10.4",
|
2018-04-29 21:55:36 +00:00
|
|
|
"pug": "2.0.3",
|
2017-10-08 02:44:35 +00:00
|
|
|
"qr-image": "3.2.0",
|
2018-05-19 20:40:07 +00:00
|
|
|
"raven": "2.6.2",
|
2017-08-07 01:14:20 +00:00
|
|
|
"read-chunk": "2.1.0",
|
2018-06-04 04:41:29 +00:00
|
|
|
"remove-markdown": "0.3.0",
|
|
|
|
"request": "2.87.0",
|
2017-12-04 02:11:26 +00:00
|
|
|
"request-promise": "4.2.2",
|
2018-03-09 05:33:43 +00:00
|
|
|
"scim-query-filter-parser": "1.1.0",
|
2018-01-28 02:40:51 +00:00
|
|
|
"semver": "5.5.0",
|
2018-04-29 21:55:36 +00:00
|
|
|
"serve-favicon": "2.5.0",
|
2018-03-25 02:35:47 +00:00
|
|
|
"sqlite3": "4.0.0",
|
2018-01-28 02:40:51 +00:00
|
|
|
"uuid": "3.2.1",
|
2018-05-12 20:13:04 +00:00
|
|
|
"validator": "10.2.0",
|
2017-08-07 01:14:20 +00:00
|
|
|
"validator-as-promised": "1.0.2",
|
2018-03-12 04:09:54 +00:00
|
|
|
"winston": "3.0.0-rc2",
|
2018-01-28 02:40:51 +00:00
|
|
|
"yargs": "11.0.0"
|
2016-08-17 00:56:55 +00:00
|
|
|
},
|
|
|
|
"devDependencies": {
|
2018-06-04 04:41:29 +00:00
|
|
|
"@panter/vue-i18next": "0.11.0",
|
|
|
|
"@vue/cli": "3.0.0-beta.15",
|
|
|
|
"apollo-cache-inmemory": "1.2.2",
|
|
|
|
"apollo-client": "2.3.2",
|
2018-01-28 05:40:25 +00:00
|
|
|
"apollo-fetch": "0.7.0",
|
2018-06-04 04:41:29 +00:00
|
|
|
"apollo-link": "1.2.2",
|
2018-04-29 21:55:36 +00:00
|
|
|
"apollo-link-batch-http": "1.2.2",
|
2018-06-04 04:41:29 +00:00
|
|
|
"apollo-link-error": "1.0.9",
|
|
|
|
"apollo-link-http": "1.5.4",
|
|
|
|
"autoprefixer": "8.6.0",
|
2017-08-19 01:21:29 +00:00
|
|
|
"babel-cli": "6.26.0",
|
2018-04-29 21:55:36 +00:00
|
|
|
"babel-core": "6.26.3",
|
|
|
|
"babel-eslint": "8.2.3",
|
2018-06-04 04:41:29 +00:00
|
|
|
"babel-jest": "23.0.1",
|
2018-03-09 05:33:43 +00:00
|
|
|
"babel-loader": "7.1.4",
|
2018-05-12 20:13:04 +00:00
|
|
|
"babel-plugin-graphql-tag": "1.6.0",
|
2018-02-03 21:48:25 +00:00
|
|
|
"babel-plugin-lodash": "3.3.2",
|
2018-03-05 22:27:30 +00:00
|
|
|
"babel-plugin-transform-imports": "1.5.0",
|
2018-02-17 23:17:25 +00:00
|
|
|
"babel-polyfill": "6.26.0",
|
2018-05-12 20:13:04 +00:00
|
|
|
"babel-preset-env": "1.7.0",
|
2017-10-07 01:35:02 +00:00
|
|
|
"babel-preset-stage-2": "6.24.1",
|
2018-02-17 23:17:25 +00:00
|
|
|
"brace": "0.11.1",
|
2018-03-05 22:27:30 +00:00
|
|
|
"cache-loader": "1.2.2",
|
2018-06-17 21:29:19 +00:00
|
|
|
"chart.js": "2.7.2",
|
2018-03-09 05:33:43 +00:00
|
|
|
"clean-webpack-plugin": "0.1.19",
|
2018-06-04 04:41:29 +00:00
|
|
|
"colors": "1.3.0",
|
2018-03-12 04:09:54 +00:00
|
|
|
"copy-webpack-plugin": "4.5.1",
|
2018-03-17 02:51:56 +00:00
|
|
|
"css-loader": "0.28.11",
|
2018-01-27 01:22:31 +00:00
|
|
|
"cssnano": "4.0.0-rc.2",
|
2018-04-29 21:55:36 +00:00
|
|
|
"duplicate-package-checker-webpack-plugin": "3.0.0",
|
|
|
|
"eslint": "4.19.1",
|
2017-10-07 01:35:02 +00:00
|
|
|
"eslint-config-requarks": "1.0.7",
|
2018-03-05 22:27:30 +00:00
|
|
|
"eslint-config-standard": "11.0.0",
|
2018-05-19 20:40:07 +00:00
|
|
|
"eslint-plugin-import": "2.12.0",
|
2018-03-05 22:27:30 +00:00
|
|
|
"eslint-plugin-node": "6.0.1",
|
2018-06-04 04:41:29 +00:00
|
|
|
"eslint-plugin-promise": "3.8.0",
|
2018-04-29 21:55:36 +00:00
|
|
|
"eslint-plugin-standard": "3.1.0",
|
|
|
|
"eslint-plugin-vue": "4.5.0",
|
2018-03-05 22:27:30 +00:00
|
|
|
"file-loader": "1.1.11",
|
2018-03-17 01:31:28 +00:00
|
|
|
"graphiql": "0.11.11",
|
2018-05-12 20:13:04 +00:00
|
|
|
"graphql-tag": "^2.9.2",
|
2018-03-18 02:41:16 +00:00
|
|
|
"graphql-voyager": "1.0.0-rc.15",
|
2018-02-03 21:48:25 +00:00
|
|
|
"hammerjs": "2.0.8",
|
2018-04-29 21:55:36 +00:00
|
|
|
"html-webpack-plugin": "3.2.0",
|
2018-03-17 06:35:52 +00:00
|
|
|
"html-webpack-pug-plugin": "0.3.0",
|
2018-01-28 02:40:51 +00:00
|
|
|
"i18next-xhr-backend": "1.5.1",
|
2018-03-17 01:31:28 +00:00
|
|
|
"ignore-loader": "0.1.2",
|
2018-06-04 04:41:29 +00:00
|
|
|
"jest": "23.1.0",
|
|
|
|
"jest-junit": "5.0.0",
|
2017-10-28 18:17:14 +00:00
|
|
|
"js-cookie": "2.2.0",
|
2018-04-29 21:55:36 +00:00
|
|
|
"lodash-webpack-plugin": "0.11.5",
|
|
|
|
"mini-css-extract-plugin": "0.4.0",
|
|
|
|
"node-sass": "4.9.0",
|
2018-06-04 04:41:29 +00:00
|
|
|
"offline-plugin": "5.0.5",
|
|
|
|
"optimize-css-assets-webpack-plugin": "4.0.2",
|
2018-03-18 02:41:16 +00:00
|
|
|
"postcss-cssnext": "3.1.0",
|
2018-05-12 20:13:04 +00:00
|
|
|
"postcss-flexbugs-fixes": "3.3.1",
|
2018-02-03 21:48:25 +00:00
|
|
|
"postcss-flexibility": "2.0.0",
|
2018-03-18 02:41:16 +00:00
|
|
|
"postcss-import": "11.1.0",
|
2018-05-12 20:13:04 +00:00
|
|
|
"postcss-loader": "2.1.5",
|
2018-06-04 04:41:29 +00:00
|
|
|
"postcss-preset-env": "5.1.0",
|
2018-05-19 20:40:07 +00:00
|
|
|
"postcss-selector-parser": "5.0.0-rc.3",
|
2017-09-04 17:03:15 +00:00
|
|
|
"pug-lint": "2.5.0",
|
2018-04-29 21:55:36 +00:00
|
|
|
"pug-loader": "2.4.0",
|
|
|
|
"pug-plain-loader": "1.0.0",
|
2018-01-21 22:54:43 +00:00
|
|
|
"raw-loader": "0.5.1",
|
2018-06-04 04:41:29 +00:00
|
|
|
"react": "16.4.0",
|
|
|
|
"react-dom": "16.4.0",
|
|
|
|
"sass-loader": "7.0.2",
|
2018-03-05 22:27:30 +00:00
|
|
|
"sass-resources-loader": "1.3.3",
|
2018-03-17 06:35:52 +00:00
|
|
|
"script-ext-html-webpack-plugin": "2.0.1",
|
2018-03-09 05:33:43 +00:00
|
|
|
"simple-progress-webpack-plugin": "1.1.2",
|
2018-04-29 21:55:36 +00:00
|
|
|
"style-loader": "0.21.0",
|
2018-02-11 23:36:20 +00:00
|
|
|
"stylus": "0.54.5",
|
2018-03-05 22:27:30 +00:00
|
|
|
"stylus-loader": "3.0.2",
|
2017-08-07 01:14:20 +00:00
|
|
|
"twemoji-awesome": "1.0.6",
|
2018-06-04 04:41:29 +00:00
|
|
|
"url-loader": "1.0.1",
|
|
|
|
"vee-validate": "2.1.0-beta.1",
|
2018-02-25 20:54:35 +00:00
|
|
|
"velocity-animate": "1.5.1",
|
2018-03-17 02:51:56 +00:00
|
|
|
"vue": "2.5.16",
|
2018-06-04 04:41:29 +00:00
|
|
|
"vue-apollo": "3.0.0-beta.16",
|
2018-06-17 21:29:19 +00:00
|
|
|
"vue-chartjs": "3.3.1",
|
2018-04-29 21:55:36 +00:00
|
|
|
"vue-clipboards": "1.2.4",
|
|
|
|
"vue-codemirror": "4.0.5",
|
2018-03-05 22:27:30 +00:00
|
|
|
"vue-hot-reload-api": "2.3.0",
|
2018-06-04 04:41:29 +00:00
|
|
|
"vue-loader": "15.2.4",
|
|
|
|
"vue-material-design-icons": "1.5.1",
|
2018-05-19 20:40:07 +00:00
|
|
|
"vue-moment": "4.0.0-0",
|
2018-02-28 05:54:09 +00:00
|
|
|
"vue-router": "3.0.1",
|
2017-10-28 18:17:14 +00:00
|
|
|
"vue-simple-breakpoints": "1.0.3",
|
2018-03-17 02:51:56 +00:00
|
|
|
"vue-template-compiler": "2.5.16",
|
2018-05-19 20:40:07 +00:00
|
|
|
"vuetify": "1.0.18",
|
2017-11-13 04:48:19 +00:00
|
|
|
"vuex": "3.0.1",
|
2018-05-19 20:40:07 +00:00
|
|
|
"vuex-persistedstate": "2.5.4",
|
2018-06-04 04:41:29 +00:00
|
|
|
"webpack": "4.10.2",
|
|
|
|
"webpack-bundle-analyzer": "2.13.1",
|
|
|
|
"webpack-cli": "3.0.1",
|
2018-04-29 21:55:36 +00:00
|
|
|
"webpack-dev-middleware": "3.1.3",
|
2018-05-19 20:40:07 +00:00
|
|
|
"webpack-hot-middleware": "2.22.2",
|
2018-03-05 22:27:30 +00:00
|
|
|
"webpack-merge": "4.1.2",
|
2018-04-29 21:55:36 +00:00
|
|
|
"whatwg-fetch": "2.0.4",
|
2018-05-19 20:40:07 +00:00
|
|
|
"write-file-webpack-plugin": "4.3.2"
|
2017-02-09 01:52:37 +00:00
|
|
|
},
|
2018-01-27 01:22:31 +00:00
|
|
|
"browserslist": [
|
|
|
|
"> 1%",
|
|
|
|
"last 2 versions",
|
|
|
|
"Firefox ESR",
|
|
|
|
"not ie < 11"
|
|
|
|
],
|
2017-03-27 02:07:40 +00:00
|
|
|
"jest": {
|
2017-10-15 03:56:51 +00:00
|
|
|
"testResultsProcessor": "./node_modules/jest-junit",
|
2017-03-27 02:07:40 +00:00
|
|
|
"collectCoverage": false,
|
|
|
|
"testMatch": [
|
|
|
|
"**/test/**/*.js?(x)",
|
|
|
|
"**/?(*.)(spec|test).js?(x)"
|
|
|
|
],
|
|
|
|
"verbose": true
|
2017-09-27 15:22:22 +00:00
|
|
|
},
|
2017-10-15 03:56:51 +00:00
|
|
|
"jest-junit": {
|
|
|
|
"suiteName": "jest test",
|
|
|
|
"output": "./test-results/junit.xml",
|
|
|
|
"classNameTemplate": "{classname}-{title}",
|
|
|
|
"titleTemplate": "{classname}-{title}"
|
|
|
|
},
|
2018-03-18 02:41:16 +00:00
|
|
|
"postcss": {
|
|
|
|
"plugins": {
|
|
|
|
"autoprefixer": {},
|
|
|
|
"cssnano": {
|
|
|
|
"preset": [
|
|
|
|
"default",
|
|
|
|
{
|
|
|
|
"discardComments": {
|
|
|
|
"removeAll": true
|
|
|
|
}
|
|
|
|
}
|
|
|
|
]
|
|
|
|
},
|
|
|
|
"postcss-flexbugs-fixes": {},
|
2018-06-04 04:41:29 +00:00
|
|
|
"postcss-flexibility": {},
|
|
|
|
"postcss-preset-env": {}
|
2018-03-18 02:41:16 +00:00
|
|
|
}
|
|
|
|
},
|
|
|
|
"pugLintConfig": {
|
|
|
|
"disallowDuplicateAttributes": true,
|
|
|
|
"disallowIdAttributeWithStaticValue": true,
|
|
|
|
"disallowMultipleLineBreaks": true,
|
|
|
|
"requireClassLiteralsBeforeAttributes": true,
|
|
|
|
"requireIdLiteralsBeforeAttributes": true,
|
|
|
|
"requireLineFeedAtFileEnd": true,
|
|
|
|
"requireLowerCaseAttributes": true,
|
|
|
|
"requireLowerCaseTags": true,
|
|
|
|
"requireSpaceAfterCodeOperator": true,
|
|
|
|
"requireStrictEqualityOperators": true,
|
|
|
|
"validateAttributeQuoteMarks": "'",
|
|
|
|
"validateAttributeSeparator": ", ",
|
|
|
|
"validateDivTags": true,
|
|
|
|
"validateIndentation": 2
|
|
|
|
},
|
2017-09-27 15:22:22 +00:00
|
|
|
"collective": {
|
|
|
|
"type": "opencollective",
|
|
|
|
"url": "https://opencollective.com/wikijs",
|
|
|
|
"logo": "https://opencollective.com/opencollective/logo.txt"
|
2017-07-09 00:35:53 +00:00
|
|
|
}
|
2017-06-10 02:35:54 +00:00
|
|
|
}
|