forked from koding/kite.js
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
89 lines (89 loc) · 2.05 KB
/
package.json
File metadata and controls
89 lines (89 loc) · 2.05 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
89
{
"name": "kite.js",
"description": "Kite client library",
"main": "index.js",
"version": "0.6.0",
"scripts": {
"test": "KITE_HOME=. KITE_KEY=$(cat ./kontrol_client.key) node ./test/index.js | faucet",
"prepublish": "gulp"
},
"author": {
"name": "Koding Team",
"email": "team@koding.com",
"website": "https://koding.com"
},
"contributors": [
{
"name": "Fatih Arslan",
"email": "fatih@koding.com"
},
{
"name": "Cenk Alti",
"email": "cenk@koding.com"
},
{
"name": "Christopher Thorn",
"email": "chris@koding.com"
},
{
"name": "Gökmen Göksel",
"email": "gokmen@koding.com"
},
{
"name": "Sinan Yasar",
"email": "sinan@koding.com"
}
],
"repository": "https://github.com/koding/kite.js.git",
"license": "MIT",
"dependencies": {
"atob": "^2.0.0",
"bluebird": "3.1.1",
"cli-color": "1.1.0",
"dnode-protocol": "~0.2.2",
"jwt-simple": "^0.4.0",
"minimist": "1.2.0",
"node-sockjs-client": "1.0.7",
"node-uuid": "^1.4.1",
"request": "^2.34.0",
"sockjs": "^0.3.9",
"stream-to-array": "^2.2.0",
"try-json-parse": "^0.1.0",
"ws": "^1.0.1"
},
"devDependencies": {
"browserify": "^12.0.1",
"browserify-shim": "^3.3.1",
"coffee-script": "^1.10.0",
"coffeeify": "^2.0.1",
"ecstatic": "^1.4.0",
"faucet": "0.0.1",
"gulp": "^3.8.11",
"gulp-coffee": "^2.3.1",
"gulp-concat": "^2.2.0",
"gulp-if": "^2.0.0",
"gulp-rename": "^1.2.0",
"gulp-replace": "^0.5.4",
"gulp-sourcemaps": "^1.6.0",
"gulp-uglify": "^1.5.1",
"gulp-util": "^3.0.7",
"tap": "^5.0.0",
"tape": "^4.4.0",
"vinyl-source-stream": "^1.1.0"
},
"browser": {
"./src/logging/logging.coffee": "./src/logging/browser.coffee"
},
"browserify": {
"transform": [
"browserify-shim"
]
},
"browserify-shim": {
"bluebird": "global:Promise",
"sockjs": "global:SockJS",
"ws": "global:WebSocket",
"node-uuid": "global:uuid",
"atob": "global:atob"
}
}