forked from ajaxorg/ace
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
57 lines (57 loc) · 1.67 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
{
"name": "ace",
"description": "Ajax.org Code Editor is a full featured source code highlighting editor that powers the Cloud9 IDE",
"version": "1.0.0",
"homepage" : "http://github.com/ajaxorg/ace",
"engines": {"node": ">= 0.6.0"},
"author": "Fabian Jakobs <[email protected]>",
"main": "lib/ace",
"repository" : {
"type" : "git",
"url" : "http://github.com/ajaxorg/ace.git"
},
"dependencies": {
"mime": "1.2.x",
"asyncjs": "0.0.x",
"jsdom": "0.2.x",
"amd-loader": "~0.0.4",
"dryice": ""
},
"mappings": {
"ace": "."
},
"licenses": [{
"type": "BSD New",
"url": "http://opensource.org/licenses/BSD-3-Clause"
}],
"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"
]
}
}
}
}
}