-
Notifications
You must be signed in to change notification settings - Fork 282
/
Copy pathpackage.json
42 lines (42 loc) · 884 Bytes
/
package.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
{
"name": "cryptocat",
"version": "2.1.12",
"description": "Web Instant Messaging App With Accessible Encryption",
"main": "index.js",
"directories": {
"test": "test"
},
"dependencies": {
"express": "3.2.5"
},
"devDependencies": {
"lodash": "1.1.x",
"mocha": "1.8.x",
"chai": "1.5.x",
"sinon": "1.6.x",
"jshint": "2.1.3",
"grunt": "~0.4.1",
"grunt-contrib-jshint": "~0.6.3",
"grunt-mocha-test": "~0.6.3",
"grunt-contrib-copy": "~0.4.1"
},
"bin": {
"cryptocat": "src/standaloneServer.js"
},
"scripts": {
"test": "mocha --ui exports --reporter spec test/chrome/js/*.test.js",
"start": "node src/standaloneServer.js"
},
"repository": {
"type": "git",
"url": "https://github.com/cryptocat/cryptocat.git"
},
"keywords": [
"encryption",
"crypto",
"js",
"web"
],
"author": "Nadim Kobeissi <nadim@crypto.cat>",
"license": "AGPL3"
}