mirror of
https://github.com/ether/etherpad-lite.git
synced 2025-05-15 11:36:53 -04:00
not working atm
This commit is contained in:
parent
1702c7c34e
commit
4fbf0e8e2a
68 changed files with 238 additions and 9606 deletions
106
package.json
106
package.json
|
@ -1,6 +1,81 @@
|
|||
{
|
||||
"name": "ep_etherpad-lite",
|
||||
"description": "A free and open source realtime collaborative editor",
|
||||
"homepage": "https://etherpad.org",
|
||||
"keywords": [
|
||||
"etherpad",
|
||||
"realtime",
|
||||
"collaborative",
|
||||
"editor"
|
||||
],
|
||||
"author": "Etherpad Foundation",
|
||||
"contributors": [
|
||||
{
|
||||
"name": "John McLear"
|
||||
},
|
||||
{
|
||||
"name": "Antonio Muci"
|
||||
},
|
||||
{
|
||||
"name": "Hans Pinckaers"
|
||||
},
|
||||
{
|
||||
"name": "Robin Buse"
|
||||
},
|
||||
{
|
||||
"name": "Marcel Klehr"
|
||||
},
|
||||
{
|
||||
"name": "Peter Martischka"
|
||||
}
|
||||
],
|
||||
"dependencies": {
|
||||
"ep_etherpad-lite": "file:src"
|
||||
"async": "^3.2.0",
|
||||
"async-stacktrace": "0.0.2",
|
||||
"channels": "0.0.4",
|
||||
"cheerio": "0.22.0",
|
||||
"clean-css": "4.2.3",
|
||||
"cookie-parser": "1.4.5",
|
||||
"ejs": "2.6.1",
|
||||
"etherpad-require-kernel": "1.0.9",
|
||||
"etherpad-yajsml": "0.0.2",
|
||||
"express": "4.17.1",
|
||||
"express-rate-limit": "5.1.1",
|
||||
"express-session": "1.17.1",
|
||||
"find-root": "1.1.0",
|
||||
"formidable": "1.2.1",
|
||||
"graceful-fs": "4.2.4",
|
||||
"http-errors": "1.8.0",
|
||||
"js-cookie": "^2.2.1",
|
||||
"jsonminify": "0.4.1",
|
||||
"languages4translatewiki": "0.1.3",
|
||||
"lodash.clonedeep": "4.5.0",
|
||||
"log4js": "0.6.35",
|
||||
"measured-core": "1.11.2",
|
||||
"mime-types": "^2.1.27",
|
||||
"nodeify": "1.0.1",
|
||||
"npm": "6.14.8",
|
||||
"openapi-backend": "2.4.1",
|
||||
"proxy-addr": "^2.0.6",
|
||||
"rate-limiter-flexible": "^2.1.4",
|
||||
"rehype": "^10.0.0",
|
||||
"rehype-minify-whitespace": "^4.0.5",
|
||||
"request": "2.88.2",
|
||||
"resolve": "1.1.7",
|
||||
"security": "1.0.0",
|
||||
"semver": "5.6.0",
|
||||
"slide": "1.1.6",
|
||||
"socket.io": "^2.3.0",
|
||||
"terser": "^4.7.0",
|
||||
"threads": "^1.4.0",
|
||||
"tiny-worker": "^2.3.0",
|
||||
"tinycon": "0.0.1",
|
||||
"ueberdb2": "^0.5.6",
|
||||
"underscore": "1.8.3",
|
||||
"unorm": "1.4.1"
|
||||
},
|
||||
"bin": {
|
||||
"etherpad-lite": "node/server.js"
|
||||
},
|
||||
"devDependencies": {
|
||||
"eslint": "^7.15.0",
|
||||
|
@ -10,7 +85,16 @@
|
|||
"eslint-plugin-node": "^11.1.0",
|
||||
"eslint-plugin-prefer-arrow": "^1.2.2",
|
||||
"eslint-plugin-promise": "^4.2.1",
|
||||
"eslint-plugin-you-dont-need-lodash-underscore": "^6.10.0"
|
||||
"eslint-plugin-you-dont-need-lodash-underscore": "^6.10.0",
|
||||
"etherpad-cli-client": "0.0.9",
|
||||
"mocha": "7.1.2",
|
||||
"mocha-froth": "^0.2.10",
|
||||
"nyc": "15.0.1",
|
||||
"set-cookie-parser": "^2.4.6",
|
||||
"sinon": "^9.2.0",
|
||||
"superagent": "^3.8.3",
|
||||
"supertest": "4.0.2",
|
||||
"wd": "1.12.1"
|
||||
},
|
||||
"eslintConfig": {
|
||||
"ignorePatterns": [
|
||||
|
@ -97,9 +181,21 @@
|
|||
"root": true
|
||||
},
|
||||
"scripts": {
|
||||
"lint": "eslint ."
|
||||
"lint-tests": "eslint tests",
|
||||
"lint-core": "eslint src",
|
||||
"lint-bin": "eslint bin",
|
||||
"lint": "npm run lint-tests && npm run lint-bin && npm run lint-core",
|
||||
"test": "nyc mocha --timeout 30000 --recursive tests/backend/specs node_modules/ep_*/static/tests/backend/specs",
|
||||
"test-container": "nyc mocha --timeout 5000 tests/container/specs/api"
|
||||
},
|
||||
"engines": {
|
||||
"node": ">=10.13.0"
|
||||
}
|
||||
"node": ">=10.13.0",
|
||||
"npm": ">=5.5.1"
|
||||
},
|
||||
"repository": {
|
||||
"type": "git",
|
||||
"url": "https://github.com/ether/etherpad-lite.git"
|
||||
},
|
||||
"version": "1.8.7",
|
||||
"license": "Apache-2.0"
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue