2016-08-17 00:56:55 +00:00
|
|
|
{
|
|
|
|
"name": "wiki",
|
2017-02-19 21:13:51 +00:00
|
|
|
"version": "1.0.0-beta.8",
|
2016-08-17 00:56:55 +00:00
|
|
|
"description": "A modern, lightweight and powerful wiki app built on NodeJS, Git and Markdown",
|
|
|
|
"main": "server.js",
|
|
|
|
"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",
|
2016-11-23 03:06:59 +00:00
|
|
|
"dev": "gulp dev",
|
2017-02-10 01:24:28 +00:00
|
|
|
"test": "snyk test && standard && pug-lint ./views",
|
2016-09-09 02:19:32 +00:00
|
|
|
"snyk-protect": "snyk protect",
|
2016-11-22 15:40:28 +00:00
|
|
|
"__prepublish": "npm run snyk-protect"
|
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": {
|
2016-10-15 03:31:15 +00:00
|
|
|
"node": ">=4.6"
|
2016-08-17 00:56:55 +00:00
|
|
|
},
|
|
|
|
"dependencies": {
|
|
|
|
"auto-load": "^2.1.0",
|
2017-02-13 04:17:14 +00:00
|
|
|
"axios": "^0.15.3",
|
2016-08-17 03:56:08 +00:00
|
|
|
"bcryptjs-then": "^1.0.1",
|
2016-12-28 02:46:06 +00:00
|
|
|
"bluebird": "^3.4.7",
|
2017-03-09 03:06:05 +00:00
|
|
|
"body-parser": "^1.17.1",
|
2017-03-04 16:23:34 +00:00
|
|
|
"bunyan": "^1.8.8",
|
2016-08-24 01:09:09 +00:00
|
|
|
"cheerio": "^0.22.0",
|
2016-11-01 02:44:00 +00:00
|
|
|
"child-process-promise": "^2.2.0",
|
2016-10-09 05:26:25 +00:00
|
|
|
"chokidar": "^1.6.0",
|
2017-02-14 07:17:25 +00:00
|
|
|
"commander": "^2.9.0",
|
2016-08-17 00:56:55 +00:00
|
|
|
"compression": "^1.6.2",
|
|
|
|
"connect-flash": "^0.1.1",
|
2016-10-15 03:31:15 +00:00
|
|
|
"connect-mongo": "^1.3.2",
|
2016-08-17 00:56:55 +00:00
|
|
|
"cookie-parser": "^1.4.3",
|
2016-12-22 01:38:12 +00:00
|
|
|
"cron": "^1.2.1",
|
2017-03-09 03:06:05 +00:00
|
|
|
"express": "^4.15.2",
|
2016-08-24 01:09:09 +00:00
|
|
|
"express-brute": "^1.0.0",
|
2016-11-01 02:44:00 +00:00
|
|
|
"express-brute-mongoose": "0.0.7",
|
2017-03-04 16:23:34 +00:00
|
|
|
"express-session": "^1.15.1",
|
2016-12-28 02:46:06 +00:00
|
|
|
"file-type": "^4.0.0",
|
2016-10-03 04:12:29 +00:00
|
|
|
"filesize.js": "^1.0.2",
|
2017-02-13 05:59:52 +00:00
|
|
|
"follow-redirects": "^1.2.1",
|
2017-01-31 00:43:37 +00:00
|
|
|
"fs-extra": "^2.0.0",
|
2016-08-27 05:04:08 +00:00
|
|
|
"git-wrapper2-promise": "^0.2.9",
|
2016-12-22 01:38:12 +00:00
|
|
|
"highlight.js": "^9.9.0",
|
2017-03-04 16:23:34 +00:00
|
|
|
"i18next": "^7.1.1",
|
2016-09-19 03:03:19 +00:00
|
|
|
"i18next-express-middleware": "^1.0.2",
|
2016-11-23 03:06:59 +00:00
|
|
|
"i18next-node-fs-backend": "^0.1.3",
|
2017-03-04 16:23:34 +00:00
|
|
|
"image-size": "^0.5.1",
|
|
|
|
"jimp": "github:NGPixel/jimp",
|
2017-02-07 19:44:35 +00:00
|
|
|
"js-yaml": "^3.8.1",
|
2017-01-31 00:43:37 +00:00
|
|
|
"klaw": "^1.3.1",
|
2017-03-04 16:23:34 +00:00
|
|
|
"levelup": "^1.3.5",
|
2016-12-28 02:46:06 +00:00
|
|
|
"lodash": "^4.17.3",
|
2017-03-04 16:23:34 +00:00
|
|
|
"markdown-it": "^8.3.0",
|
2016-09-01 02:47:51 +00:00
|
|
|
"markdown-it-abbr": "^1.0.4",
|
2017-03-04 16:23:34 +00:00
|
|
|
"markdown-it-anchor": "^4.0.0",
|
2016-10-16 23:09:43 +00:00
|
|
|
"markdown-it-attrs": "^0.8.0",
|
2016-10-15 03:31:15 +00:00
|
|
|
"markdown-it-emoji": "^1.3.0",
|
2016-08-20 21:20:53 +00:00
|
|
|
"markdown-it-expand-tabs": "^1.0.11",
|
2016-10-15 03:31:15 +00:00
|
|
|
"markdown-it-external-links": "0.0.6",
|
2016-08-20 21:20:53 +00:00
|
|
|
"markdown-it-footnote": "^3.0.1",
|
|
|
|
"markdown-it-task-lists": "^1.4.1",
|
2017-03-04 16:23:34 +00:00
|
|
|
"memdown": "^1.2.4",
|
2016-12-22 01:38:12 +00:00
|
|
|
"mime-types": "^2.1.13",
|
2016-12-09 03:44:31 +00:00
|
|
|
"moment": "^2.17.1",
|
2016-12-28 02:46:06 +00:00
|
|
|
"moment-timezone": "^0.5.11",
|
2017-03-04 16:23:34 +00:00
|
|
|
"mongoose": "^4.8.5",
|
2016-12-22 01:38:12 +00:00
|
|
|
"multer": "^1.2.1",
|
2017-02-14 07:17:25 +00:00
|
|
|
"ora": "^1.1.0",
|
2016-08-17 00:56:55 +00:00
|
|
|
"passport": "^0.3.2",
|
|
|
|
"passport-local": "^1.0.0",
|
2016-11-01 02:44:00 +00:00
|
|
|
"passport.socketio": "^3.7.0",
|
2017-03-04 16:23:34 +00:00
|
|
|
"pm2": "^2.4.2",
|
2017-02-07 19:44:35 +00:00
|
|
|
"pug": "^2.0.0-beta11",
|
2016-09-25 04:08:49 +00:00
|
|
|
"read-chunk": "^2.0.0",
|
2016-09-04 05:12:42 +00:00
|
|
|
"remove-markdown": "^0.1.0",
|
2017-02-15 01:48:39 +00:00
|
|
|
"requarks-core": "^0.2.2",
|
2017-03-09 03:06:05 +00:00
|
|
|
"request": "^2.80.0",
|
2017-03-04 16:23:34 +00:00
|
|
|
"search-index-adder": "github:NGPixel/search-index-adder",
|
|
|
|
"search-index-searcher": "github:NGPixel/search-index-searcher",
|
2017-03-05 04:20:22 +00:00
|
|
|
"semver": "^5.3.0",
|
2017-03-04 16:23:34 +00:00
|
|
|
"serve-favicon": "^2.4.1",
|
2016-08-17 00:56:55 +00:00
|
|
|
"simplemde": "^1.11.2",
|
2017-03-04 16:23:34 +00:00
|
|
|
"socket.io": "^1.7.3",
|
2016-09-05 18:11:51 +00:00
|
|
|
"sticky-js": "^1.0.7",
|
2017-02-12 20:40:43 +00:00
|
|
|
"stopword": "^0.1.1",
|
|
|
|
"stream-to-promise": "^2.2.0",
|
2017-02-13 05:59:52 +00:00
|
|
|
"tar": "^2.2.1",
|
2017-02-14 04:30:42 +00:00
|
|
|
"through2": "^2.0.3",
|
2017-03-04 16:23:34 +00:00
|
|
|
"validator": "^7.0.0",
|
2016-08-17 00:56:55 +00:00
|
|
|
"validator-as-promised": "^1.0.2",
|
2016-11-23 03:06:59 +00:00
|
|
|
"winston": "^2.3.0"
|
2016-08-17 00:56:55 +00:00
|
|
|
},
|
|
|
|
"devDependencies": {
|
2017-03-04 16:23:34 +00:00
|
|
|
"ace-builds": "^1.2.6",
|
2016-10-03 04:12:29 +00:00
|
|
|
"babel-preset-es2015": "^6.16.0",
|
2016-08-17 00:56:55 +00:00
|
|
|
"chai": "^3.5.0",
|
2016-10-15 03:31:15 +00:00
|
|
|
"chai-as-promised": "^6.0.0",
|
2016-08-17 00:56:55 +00:00
|
|
|
"codacy-coverage": "^2.0.0",
|
2017-03-04 16:23:34 +00:00
|
|
|
"eslint": "^3.16.1",
|
|
|
|
"eslint-plugin-promise": "^3.5.0",
|
|
|
|
"eslint-plugin-standard": "^2.1.1",
|
2016-08-17 00:56:55 +00:00
|
|
|
"gulp": "^3.9.1",
|
|
|
|
"gulp-babel": "^6.1.2",
|
2017-03-04 16:23:34 +00:00
|
|
|
"gulp-clean-css": "^3.0.3",
|
2016-11-23 03:06:59 +00:00
|
|
|
"gulp-concat": "^2.6.1",
|
2016-08-17 00:56:55 +00:00
|
|
|
"gulp-gzip": "^1.4.0",
|
|
|
|
"gulp-include": "^2.3.1",
|
2016-10-03 04:12:29 +00:00
|
|
|
"gulp-nodemon": "^2.2.1",
|
2016-08-17 00:56:55 +00:00
|
|
|
"gulp-plumber": "^1.1.0",
|
2016-12-22 01:38:12 +00:00
|
|
|
"gulp-sass": "^3.0.0",
|
2016-08-17 00:56:55 +00:00
|
|
|
"gulp-tar": "^1.9.0",
|
|
|
|
"gulp-uglify": "^2.0.0",
|
2016-11-21 01:09:50 +00:00
|
|
|
"gulp-watch": "^4.3.11",
|
2017-01-31 00:43:37 +00:00
|
|
|
"gulp-zip": "^4.0.0",
|
2016-08-22 03:18:31 +00:00
|
|
|
"istanbul": "^0.4.5",
|
2016-09-25 04:08:49 +00:00
|
|
|
"jquery": "^3.1.1",
|
2017-03-04 16:23:34 +00:00
|
|
|
"jquery-contextmenu": "^2.4.3",
|
2016-10-03 04:12:29 +00:00
|
|
|
"jquery-simple-upload": "^1.0.0",
|
2016-08-30 02:19:47 +00:00
|
|
|
"jquery-smooth-scroll": "^2.0.0",
|
2016-12-09 03:44:31 +00:00
|
|
|
"merge-stream": "^1.0.1",
|
|
|
|
"mocha": "^3.2.0",
|
2017-03-04 16:23:34 +00:00
|
|
|
"mocha-lcov-reporter": "^1.3.0",
|
2016-10-15 03:31:15 +00:00
|
|
|
"nodemon": "^1.11.0",
|
2017-02-10 01:24:28 +00:00
|
|
|
"pug-lint": "^2.4.0",
|
2016-11-23 03:06:59 +00:00
|
|
|
"run-sequence": "^1.2.2",
|
2017-03-04 16:23:34 +00:00
|
|
|
"snyk": "^1.25.1",
|
|
|
|
"standard": "^9.0.0",
|
2017-02-07 19:44:35 +00:00
|
|
|
"sticky-js": "^1.1.9",
|
2016-09-01 02:47:51 +00:00
|
|
|
"twemoji-awesome": "^1.0.4",
|
2017-03-04 16:23:34 +00:00
|
|
|
"vue": "^2.2.1"
|
2016-09-09 02:19:32 +00:00
|
|
|
},
|
2017-02-09 01:52:37 +00:00
|
|
|
"standard": {
|
2017-02-10 01:24:28 +00:00
|
|
|
"globals": [
|
2017-02-09 01:52:37 +00:00
|
|
|
"app",
|
|
|
|
"appconfig",
|
|
|
|
"appdata",
|
|
|
|
"db",
|
|
|
|
"entries",
|
|
|
|
"git",
|
|
|
|
"mark",
|
|
|
|
"lang",
|
|
|
|
"lcdata",
|
|
|
|
"rights",
|
2017-02-12 20:40:43 +00:00
|
|
|
"search",
|
2017-02-09 01:52:37 +00:00
|
|
|
"upl",
|
|
|
|
"winston",
|
|
|
|
"ws",
|
|
|
|
"Mongoose",
|
|
|
|
"CORE_PATH",
|
|
|
|
"ROOTPATH",
|
|
|
|
"IS_DEBUG",
|
2017-02-13 04:17:14 +00:00
|
|
|
"PROCNAME"
|
2017-02-09 01:52:37 +00:00
|
|
|
],
|
|
|
|
"ignore": [
|
|
|
|
"assets/**/*",
|
|
|
|
"data/**/*",
|
|
|
|
"node_modules/**/*",
|
|
|
|
"repo/**/*"
|
|
|
|
]
|
|
|
|
},
|
2016-09-09 02:19:32 +00:00
|
|
|
"snyk": true
|
2016-09-11 02:53:21 +00:00
|
|
|
}
|