forked from CodeboxIDE/codebox
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
79 lines (79 loc) · 2.41 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
{
"name": "codebox",
"description": "Extensible hybrid IDE",
"version": "1.0.0",
"author": "FriendCode Inc. <[email protected]>",
"license": "Apache 2",
"preferGlobal": true,
"main": "lib/index.js",
"repository": {
"type": "git",
"url": "https://github.com/CodeboxIDE/codebox.git"
},
"keywords": [
"cli", "ide", "server", "desktop", "development", "code", "editor"
],
"contributors": [
{
"name": "Aaron O'Mullan",
"email": "[email protected]"
},
{
"name": "Samy Pesse",
"email": "[email protected]"
}
],
"bin": {
"codebox": "./bin/codebox.js"
},
"dependencies": {
"q": "1.0.1",
"lodash": "2.4.1",
"pkgm": "2.4.0",
"express": "4.6.1",
"express-session": "1.7.0",
"wrench": "1.5.8",
"body-parser": "1.0.2",
"cookie-parser": "1.0.1",
"sockjs": "0.3.9",
"eventemitter2": "0.4.14",
"crc": "0.2.1",
"request": "2.37.0",
"commander": "2.3.0",
"open": "0.0.5",
"ini": "1.2.1",
"basic-auth-connect": "1.0.0",
"connect-multiparty": "1.1.0"
},
"devDependencies": {
"mocha": "1.18.2",
"grunt": "~0.4.2",
"grunt-cli": "0.1.11",
"grunt-hr-builder": "1.1.0",
"grunt-contrib-clean": "0.5.0",
"grunt-contrib-copy": "0.5.0",
"grunt-bower-install-simple": "0.9.2",
"grunt-exec": "0.4.6",
"happyrhino": "1.0.5"
},
"packageDependencies": {
"about": "CodeboxIDE/package-about",
"command-palette": "CodeboxIDE/package-command-palette",
"files-tree": "CodeboxIDE/package-files-tree",
"tabs": "CodeboxIDE/package-tabs",
"editor": "CodeboxIDE/package-editor",
"editorsync": "CodeboxIDE/package-editorsync",
"terminal": "CodeboxIDE/package-terminal",
"pkgcontrol": "CodeboxIDE/package-pkgcontrol",
"statusbar": "CodeboxIDE/package-statusbar",
"watcher": "CodeboxIDE/package-watcher",
"panels": "CodeboxIDE/package-panels",
"find": "CodeboxIDE/package-find",
"git": "CodeboxIDE/package-git",
"settings": "CodeboxIDE/package-settings",
"menubar": "CodeboxIDE/package-menubar"
},
"scripts": {
"test": "export TESTING=true; mocha --reporter list"
}
}