-
Notifications
You must be signed in to change notification settings - Fork 32
/
package.json
84 lines (84 loc) · 1.89 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
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
{
"name": "brackets",
"description": "Brackets Server is a server for providing hosted version of the popular code editor Brackets.",
"version": "0.5.8",
"author": "Boyan Rabchev <boyan@rabchev.com>",
"contributors": [
{
"name": "Boyan Rabchev",
"email": "boyan@rabchev.com"
}
],
"repository": "https://github.com/rabchev/brackets-server.git",
"main": "./lib/server",
"preferGlobal": "true",
"bin": {
"brackets": "./bin/run.js",
"brackets-server": "./bin/run.js"
},
"dependencies": {
"commander": "^2.3.0",
"glob": "^4.0.6",
"mkdirp": "^0.5.0",
"ncp": "^1.0.0",
"open": "^0.0.5",
"rimraf": "^2.2.8",
"send": "^0.9.3",
"socket.io": "1.1.0",
"socket.io-client": "^1.4.0"
},
"devDependencies": {
"mocha": "*",
"chai": "*",
"supertest": "*",
"grunt": "*",
"grunt-release": "*",
"grunt-shell": "*",
"grunt-simple-mocha": "*",
"grunt-node-inspector": "*",
"grunt-concurrent": "*",
"grunt-contrib-requirejs": "*",
"grunt-contrib-compress": "*",
"grunt-contrib-copy": "*",
"grunt-contrib-htmlmin": "*",
"grunt-contrib-less": "0.8.2",
"grunt-replace": "*",
"grunt-contrib-concat": "*",
"grunt-targethtml": "*",
"grunt-usemin": "0.1.11",
"grunt-contrib-clean": "*",
"load-grunt-tasks": "*",
"grunt-text-replace": "*",
"q": "0.9.2",
"shelljs": "^0.3.0"
},
"keywords": [
"brackets",
"node",
"nodejs",
"code",
"editor",
"web",
"project",
"application",
"management",
"dev",
"development",
"javascript",
"html",
"css",
"ide"
],
"scripts": {
"test": "grunt test",
"postinstall": "node lib/post-install.js"
},
"bugs": {
"email": "boyan@rabchev.com",
"url": "https://github.com/rabchev/brackets-server/issues"
},
"license": "MIT",
"engines": {
"node": ">=0.10"
}
}