forked from cryptpad/cryptpad
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
21 lines (21 loc) · 760 Bytes
/
package.json
File metadata and controls
21 lines (21 loc) · 760 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
{
"name": "cryptpad",
"description": "realtime collaborative visual editor with zero knowlege server",
"version": "0.1.0",
"dependencies": {
"express": "~4.10.1",
"ws": "^1.0.1",
"nthen": "~0.1.0"
},
"devDependencies": {
"jshint": "~2.9.1",
"selenium-webdriver": "^2.53.1",
"less": "2.7.1"
},
"scripts": {
"lint": "jshint --config .jshintrc --exclude-path .jshintignore .",
"test": "node TestSelenium.js",
"style": "lessc ./customize.dist/src/cryptpad.less > ./customize.dist/main.css && lessc ./customize.dist/src/alertify.less > ./customize.dist/alertify.css && lessc ./customize.dist/src/toolbar.less > ./customize.dist/toolbar.css",
"template": "cd customize.dist/src && node build.js"
}
}