-
Notifications
You must be signed in to change notification settings - Fork 11
/
Copy pathpackage.json
61 lines (45 loc) · 1.24 KB
/
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
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
{
"name": "stxt",
"description": "distributed chat system",
"keywords": ["chat", "distributed"],
"homepage": "http://stxt.net",
"repository": "git://github.com/graydon/stxt.git",
"version": "0.1.0",
"bugs": {
"url": "http://github.com/graydon/stxt/issues",
"email": "graydon@pobox.com"
},
"license": "ASL 2.0",
"dependencies": {
"sjcl": "1.0.0",
"CBuffer": "0.1.4",
"chai": "1.8.1",
"mocha": "1.14.0",
"ministore": "0.0.5",
"when": "2.7.0"
},
"devDependencies": {
"grunt": "~0.4.1",
"grunt-cli": "~0.1.11",
"grunt-contrib-clean": "~0.5.0",
"grunt-contrib-jshint": "~0.6.3",
"grunt-mocha-cov": "~0.0.7",
"mocha-term-cov-reporter": "0.1.5",
"mocha-lcov-reporter": "0.0.1",
"blanket": "1.1.5",
"grunt-browserify": "~1.2.11",
"grunt-bower": "~0.7.0",
"grunt-mozilla-addon-sdk": "0.3.1",
"grunt-crx": "~0.3.3",
"grunt-zip": "~0.12.0",
"grunt-lint5": "~0.1.4"
},
"scripts": {
"test": "node_modules/.bin/grunt travis",
"blanket": {
"pattern": [
"stxt/src/"
]
}
}
}