-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpackage.json
More file actions
88 lines (88 loc) · 2.08 KB
/
package.json
File metadata and controls
88 lines (88 loc) · 2.08 KB
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
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
{
"name": "respoke-admin",
"version": "2.0.1",
"description": "Respoke API client library for Node.js.",
"main": "index.js",
"scripts": {
"test": "istanbul cover _mocha 'spec/**/*.spec.js'",
"functional": "mocha 'spec/functional/**/*.spec.js'",
"unit": "mocha 'spec/unit/**/*.spec.js'",
"debug-test": "DEBUG=respoke-* npm test",
"docs": "grunt docs",
"build-readme": "grunt build"
},
"repository": {
"type": "git",
"url": "https://github.com/respoke/node-respoke-admin"
},
"keywords": [
"respoke"
],
"author": {
"name": "Respoke",
"email": "support@respoke.io",
"url": "https://www.respoke.io"
},
"contributors": [
{
"name": "Erin Spiceland",
"email": "yes@erin.codes"
},
{
"name": "Dan Jenkins",
"email": "me@dan-jenkins.co.uk"
},
{
"name": "Jeff H. Parrish",
"email": "jeffhparrish@gmail.com"
},
{
"name": "Chad McElligott",
"email": "chad.mcelligott@gmail.com"
},
{
"name": "David M. Lee, II",
"email": "leedm777@yahoo.com"
},
{
"name": "Matthew Turney",
"email": "pho3nixf1re84@gmail.com"
},
{
"name": "Tian Davis",
"email": ""
}
],
"license": "MIT",
"bugs": {
"url": "https://github.com/respoke/node-respoke-admin/issues"
},
"homepage": "http://respoke.github.io/node-respoke-admin",
"devDependencies": {
"grunt": "^0.4.5",
"grunt-cli": "^0.1.13",
"grunt-contrib-copy": "^0.8.0",
"grunt-contrib-jshint": "^0.11.2",
"grunt-contrib-watch": "^0.6.1",
"grunt-gh-pages": "^0.10.0",
"grunt-http-server": "^1.0.0",
"grunt-open": "^0.2.3",
"istanbul": "^0.3.2",
"jsdoxy": "0.7.4",
"mocha": "^2.2.5",
"nock": "^2.3.0",
"should": "^6.0.3",
"sinon": "^1.10.3",
"socket.io": "^0.9.17",
"uuid": "^2.0.1"
},
"dependencies": {
"debug": "^2.2.0",
"es6-promise": "^3.0.0",
"lodash": "^3.9.3",
"nodeify": "^1.0.0",
"os-name": "^1.0.3",
"request": "^2.40.0",
"socket.io-client": "respoke/socket.io-client#0.9-ws1.x"
}
}