UNPKG

2.3 kBJSONView Raw
1{
2 "name": "brackets",
3 "description": "Brackets Server is a server for providing hosted version of the popular code editor Brackets.",
4 "version": "0.5.3",
5 "author": "Boyan Rabchev <boyan@rabchev.com>",
6 "contributors": [
7 { "name": "Boyan Rabchev", "email": "boyan@rabchev.com" }
8 ],
9 "repository": "https://github.com/rabchev/brackets-server.git",
10 "main": "./lib/server",
11 "preferGlobal": "true",
12 "bin": {
13 "brackets": "./bin/run.js",
14 "brackets-server": "./bin/run.js"
15 },
16 "dependencies": {
17 "send": "*",
18 "mkdirp": "*",
19 "rimraf": "*",
20 "ncp": "*",
21 "commander": "*",
22 "open": "*",
23 "socket.io": "*",
24 "glob": "^4.0.6"
25 },
26 "devDependencies": {
27 "mocha": "*",
28 "chai": "*",
29 "sinon-chai": "*",
30 "supertest": "*",
31 "grunt": "*",
32 "grunt-release": "*",
33 "grunt-shell": "*",
34 "grunt-simple-mocha": "*",
35 "grunt-node-inspector": "*",
36 "grunt-concurrent": "*",
37 "grunt-contrib-requirejs": "*",
38 "grunt-contrib-compress": "*",
39 "grunt-contrib-copy": "*",
40 "grunt-contrib-htmlmin": "*",
41 "grunt-contrib-less": "*",
42 "grunt-replace": "*",
43 "grunt-contrib-concat": "*",
44 "grunt-targethtml": "*",
45 "grunt-usemin": "0.1.11",
46 "grunt-contrib-clean": "*",
47 "load-grunt-tasks": "*",
48 "grunt-text-replace": "*",
49 "q": "0.9.2"
50 },
51 "keywords": [
52 "brackets",
53 "node",
54 "nodejs",
55 "code",
56 "editor",
57 "web",
58 "project",
59 "application",
60 "management",
61 "dev",
62 "development",
63 "javascript",
64 "html",
65 "css",
66 "ide"
67 ],
68 "scripts": {
69 "test": "grunt test",
70 "prepublish": "node lib/pre-publish.js",
71 "postpublish": "node lib/post-install.js",
72 "postinstall": "node lib/post-install.js"
73 },
74 "bugs": {
75 "email": "boyan@rabchev.com",
76 "url": "https://github.com/rabchev/brackets-server/issues"
77 },
78 "license": {
79 "type": "MIT",
80 "url": "http://github.com/rabchev/brackets-server/blob/master/LICENSE"
81 },
82 "engines": { "node": ">=0.10" }
83}