cryptpad/package.json

35 lines
1.4 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",
2018-01-17 13:28:20 +00:00
"version": "1.25.0",
"dependencies": {
2018-01-23 11:18:08 +00:00
"chainpad-server": "^2.0.0",
"express": "~4.10.1",
2016-09-16 16:45:40 +00:00
"nthen": "~0.1.0",
2018-01-23 11:18:08 +00:00
"pull-stream": "^3.6.1",
"saferphore": "0.0.1",
2018-01-23 11:18:08 +00:00
"stream-to-pull-stream": "^1.7.2",
"tweetnacl": "~0.12.2",
"ws": "^1.0.1"
2016-02-12 09:33:09 +00:00
},
"devDependencies": {
"flow-bin": "^0.59.0",
"heapdump": "^0.3.9",
2016-04-20 16:08:01 +00:00
"jshint": "~2.9.1",
"less": "2.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",
"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:less": "./node_modules/lesshint/bin/lesshint -c ./.lesshintrc ./customize.dist/src/less2/",
"flow": "./node_modules/.bin/flow",
"test": "node TestSelenium.js",
"template": "cd customize.dist/src && for page in ../index.html ../privacy.html ../terms.html ../about.html ../contact.html ../what-is-cryptpad.html ../../www/login/index.html ../../www/register/index.html ../../www/settings/index.html ../../www/user/index.html;do echo $page; cp template.html $page; done;"
}
2014-10-31 15:42:58 +00:00
}