cryptpad/package.json

53 lines
1.9 KiB
JSON
Raw Normal View History

2014-10-31 23:42:58 +08:00
{
"name": "cryptpad",
"description": "realtime collaborative visual editor with zero knowlege server",
"version": "3.24.0",
2018-06-25 19:45:25 +08:00
"license": "AGPL-3.0+",
"repository": {
"type": "git",
"url": "git://github.com/xwiki-labs/cryptpad.git"
},
"funding": {
"type": "opencollective",
"url": "https://opencollective.com/cryptpad"
},
"dependencies": {
"@mcrowe/minibloom": "^0.2.0",
"chainpad-crypto": "^0.2.2",
2020-03-25 21:45:55 +08:00
"chainpad-server": "^4.0.9",
2018-03-05 21:51:22 +08:00
"express": "~4.16.0",
2018-07-19 16:33:01 +08:00
"fs-extra": "^7.0.0",
2019-09-03 22:36:27 +08:00
"get-folder-size": "^2.0.1",
"netflux-websocket": "^0.1.20",
2019-08-27 23:08:24 +08:00
"nthen": "0.1.8",
2018-01-23 19:18:08 +08:00
"pull-stream": "^3.6.1",
"saferphore": "0.0.1",
2018-03-20 18:31:37 +08:00
"sortify": "^1.0.4",
2018-01-23 19:18:08 +08:00
"stream-to-pull-stream": "^1.7.2",
"tweetnacl": "~0.12.2",
"ulimit": "0.0.2",
"uuid": "^8.3.1",
2019-09-03 22:36:27 +08:00
"ws": "^3.3.1"
2016-02-12 17:33:09 +08:00
},
"devDependencies": {
2019-07-11 16:27:08 +08:00
"jshint": "^2.10.2",
"less": "3.7.1",
"lesshint": "^4.5.0",
2017-12-15 23:09:30 +08:00
"selenium-webdriver": "^3.6.0"
2016-02-12 17:33:09 +08:00
},
"scripts": {
2017-08-24 17:34:46 +08:00
"start": "node server.js",
"dev": "DEV=1 node server.js",
2017-12-11 18:13:06 +08:00
"fresh": "FRESH=1 node server.js",
2019-08-30 21:03:22 +08:00
"package": "PACKAGE=1 node server.js",
"lint": "jshint --config .jshintrc --exclude-path .jshintignore . && ./node_modules/lesshint/bin/lesshint -c ./.lesshintrc ./customize.dist/src/less2/",
2017-12-11 22:05:58 +08:00
"lint:js": "jshint --config .jshintrc --exclude-path .jshintignore .",
"lint:server": "jshint --config .jshintrc lib",
2017-12-11 22:05:58 +08:00
"lint:less": "./node_modules/lesshint/bin/lesshint -c ./.lesshintrc ./customize.dist/src/less2/",
"test": "node scripts/TestSelenium.js",
2019-09-06 00:01:21 +08:00
"test-rpc": "cd scripts/tests && node test-rpc",
"template": "cd customize.dist/src && for page in ../index.html ../privacy.html ../terms.html ../about.html ../contact.html ../what-is-cryptpad.html ../features.html ../../www/login/index.html ../../www/register/index.html ../../www/user/index.html;do echo $page; cp template.html $page; done;",
"evict-inactive": "node scripts/evict-inactive.js"
}
2014-10-31 23:42:58 +08:00
}