forked from metajack/strophejs
-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
56 lines (56 loc) · 1.27 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
{
"name": "strophe.js",
"description": "Strophe.js is an XMPP library for JavaScript",
"version": "1.1.3",
"homepage": "http://strophe.im/strophejs",
"repository": {
"type": "git",
"url": "git://github.com/strophe/strophejs.git"
},
"keywords": [
"xmpp",
"message",
"bosh",
"websocket",
"browser"
],
"author": "Jack Moffit (metajack)",
"contributors": [
"Nathan Zorn (thepug)",
"Andreas Guth (Gordin)",
"Anton Stroganov (Aeon)",
"Florian Zeitz (Florob)",
"Christopher Zorn (twonds)",
"dodo",
"Lee Boynton (lboynton)",
"Theo Cushion (theozaurus)",
"Brendon Crawford (brendoncrawford)"
],
"licenses": [
"MIT"
],
"dependencies": [],
"main": "./strophe.js",
"scripts": {
"lint": "grunt",
"build": "grunt",
"clean": "grunt clean",
"doc": "grunt doc",
"release": "grunt release"
},
"engines": {
"browser": "*"
},
"devDependencies": {
"grunt": "~0.4",
"grunt-contrib-uglify": "~0.2.7",
"grunt-contrib-concat": "~0.3.0",
"grunt-contrib-clean": "~0.5.0",
"grunt-contrib-copy": "~0.5.0",
"grunt-shell": "~0.6.1",
"grunt-contrib-jshint": "~0.8.0",
"grunt-contrib-watch": "~0.5.3",
"grunt-mkdir": "~0.1.1",
"grunt-natural-docs": "~0.1.1"
}
}