cryptpad/package.json

51 lines
1.9 KiB
JSON
Raw Normal View History

2014-10-31 15:42:58 +00:00
{
"name": "cryptpad",
"description": "realtime collaborative visual editor with zero knowlege server",
"version": "3.21.0",
2018-06-25 11:45:25 +00: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": {
"chainpad-crypto": "^0.2.2",
2020-03-25 13:45:55 +00:00
"chainpad-server": "^4.0.9",
2018-03-05 13:51:22 +00:00
"express": "~4.16.0",
2018-07-19 08:33:01 +00:00
"fs-extra": "^7.0.0",
2019-09-03 14:36:27 +00:00
"get-folder-size": "^2.0.1",
"netflux-websocket": "^0.1.20",
2019-08-27 15:08:24 +00:00
"nthen": "0.1.8",
2018-01-23 11:18:08 +00:00
"pull-stream": "^3.6.1",
"saferphore": "0.0.1",
2018-03-20 10:31:37 +00:00
"sortify": "^1.0.4",
2018-01-23 11:18:08 +00:00
"stream-to-pull-stream": "^1.7.2",
"tweetnacl": "~0.12.2",
"ulimit": "0.0.2",
2019-09-03 14:36:27 +00:00
"ws": "^3.3.1"
2016-02-12 09:33:09 +00:00
},
"devDependencies": {
2019-07-11 08:27:08 +00:00
"jshint": "^2.10.2",
"less": "3.7.1",
"lesshint": "^4.5.0",
2017-12-15 15:09:30 +00:00
"selenium-webdriver": "^3.6.0"
2016-02-12 09:33:09 +00:00
},
"scripts": {
2017-08-24 09:34:46 +00:00
"start": "node server.js",
"dev": "DEV=1 node server.js",
2017-12-11 10:13:06 +00:00
"fresh": "FRESH=1 node server.js",
2019-08-30 13:03:22 +00: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 14:05:58 +00:00
"lint:js": "jshint --config .jshintrc --exclude-path .jshintignore .",
"lint:server": "jshint --config .jshintrc lib",
2017-12-11 14:05:58 +00:00
"lint:less": "./node_modules/lesshint/bin/lesshint -c ./.lesshintrc ./customize.dist/src/less2/",
"test": "node scripts/TestSelenium.js",
2019-09-05 16:01:21 +00: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 15:42:58 +00:00
}