-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathpackage.json
More file actions
34 lines (34 loc) · 837 Bytes
/
Copy pathpackage.json
File metadata and controls
34 lines (34 loc) · 837 Bytes
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
{
"name": "gcm-xmpp",
"description": "Connects to GCM servers using a XMPP protocol.",
"version": "1.0.4",
"author": "Alejandro Santiago Nieto",
"license": "MIT",
"dependencies": {
"debug": "2.x.x",
"node-xmpp-client": "2.x.x",
"utjs": "1.x.x"
},
"devDependencies": {
"chai": "3.x.x",
"jscs": "3.x.x",
"jshint": "2.x.x",
"mocha": "3.x.x"
},
"main": "index.js",
"files": [
"index.js",
"lib"
],
"scripts": {
"test": "mocha test/*.js",
"jshint": "jshint index.js lib/*.js test/*.js",
"jscs": "jscs index.js lib/*.js test/*.js",
"jscs:fix": "jscs --fix index.js lib/*.js test/*.js",
"check": "npm run test && npm run jshint && npm run jscs && npm outdated"
},
"repository": {
"type": "git",
"url": "https://github.com/alemures/gcm-xmpp.git"
}
}