forked from ajaxorg/ace
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
70 lines (70 loc) · 1.97 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
{
"name": "ace",
"description": "Ajax.org Code Editor is a full featured source code highlighting editor that powers the Cloud9 IDE",
"version": "0.2.0",
"homepage" : "http://github.com/ajaxorg/ace",
"engines": {"node": ">= 0.4.0"},
"author": "Fabian Jakobs <fabian@ajax.org>",
"main": "lib/ace",
"repository" : {
"type" : "git",
"url" : "http://github.com/ajaxorg/ace.git"
},
"dependencies": {
"mime": "1.2.x"
},
"devDependencies": {
"asyncjs": "0.0.x",
"jsdom": "0.2.x",
"amd-loader": "~0.0.4",
"plist": "",
"dryice": "0.4.2",
"panino" : "~1.0.15"
},
"engines": {
"node": "~0.6.0"
},
"mappings": {
"ace": "."
},
"licenses": [{
"type": "MPL",
"url": "http://www.mozilla.org/MPL/"
}, {
"type": "GPL",
"url": "http://www.gnu.org/licenses/gpl.html"
}, {
"type": "LGPL",
"url": "http://www.gnu.org/licenses/old-licenses/lgpl-2.1.html"
}],
"directories": {
"lib": "lib/ace"
},
"scripts": {
"test": "node lib/ace/test/all.js",
"postinstall": "node ./install.js"
},
"config": {
"github.com/sourcemint/bundler-js/0/-meta/config/0": {
"adapter": "github.com/sourcemint/sdk-requirejs/0",
"modules": {
"/lib/ace/virtual_renderer.js": {
"dynamicLinks": [
"/lib/ace/theme/*.js"
]
},
"/lib/ace/worker/worker_client.js": {
"dynamicLinks": [
"/lib/ace/worker/worker_sourcemint.js"
]
},
"/lib/ace/worker/worker_sourcemint.js": {
"bundleLoader": true,
"dynamicLinks": [
"/lib/ace/mode/*_worker.js"
]
}
}
}
}
}