-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
38 lines (38 loc) · 977 Bytes
/
package.json
File metadata and controls
38 lines (38 loc) · 977 Bytes
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
{
"name": "C9",
"version": "0.1.5",
"description": "A wrapper app for running the Cloud9 IDE locally",
"main": "app://c9/www/index.html",
"repository": {
"type": "git",
"url": "https://github.com/KylePDavis/c9.git"
},
"keywords": [
"editor"
],
"author": {
"name": "Kyle P Davis"
},
"license": "MIT",
"scripts": {
"install": "./setup.sh",
"start": "./c9.sh",
"clean": "./clean.sh"
},
"dependencies": {
"async": "~0.2.10"
},
"js-flags": "--harmony",
"single-instance": true,
"chromium-args": "--enable-logging --enable-webgl --enable-webaudio --disable-accelerated-video --ignore-gpu-blacklist --force-compositing-mode --harmony --enable-experimental-web-platform-features --enable-experimental-webkit-features",
"window": {
"icon": "www/img/c9.png",
"width": 1000,
"height": 700,
"min_height": 500,
"min_width": 500,
"position": "mouse",
"toolbar": false,
"frame": true
}
}