Files
ace/package.json

58 lines
1.7 KiB
JSON
Raw Permalink Normal View History

2010-09-22 16:08:40 +02:00
{
"name": "ace",
"description": "Ajax.org Code Editor is a full featured source code highlighting editor that powers the Cloud9 IDE",
2012-09-19 16:57:48 +04:00
"version": "1.0.0",
2010-10-27 13:11:21 +02:00
"homepage" : "http://github.com/ajaxorg/ace",
2012-07-26 20:42:42 +04:00
"engines": {"node": ">= 0.6.0"},
2013-02-14 10:37:35 +01:00
"author": "Fabian Jakobs <fabian@c9.io>",
2011-01-14 16:18:04 +01:00
"main": "lib/ace",
2010-09-22 16:08:40 +02:00
"repository" : {
"type" : "git",
2010-10-27 13:11:21 +02:00
"url" : "http://github.com/ajaxorg/ace.git"
2010-09-22 16:08:40 +02:00
},
2011-01-22 15:36:14 +01:00
"dependencies": {
"mime": "1.2.x",
"asyncjs": "0.0.x",
2011-11-10 10:35:32 +01:00
"jsdom": "0.2.x",
2012-04-06 17:55:23 +02:00
"amd-loader": "~0.0.4",
"dryice": "0.4.10"
2012-04-28 15:46:34 +02:00
},
2012-02-29 16:03:18 -08:00
"mappings": {
"ace": "."
},
2010-09-22 16:08:40 +02:00
"licenses": [{
"type": "BSD New",
"url": "http://opensource.org/licenses/BSD-3-Clause"
2011-01-31 10:30:13 -08:00
}],
"directories": {
"lib": "lib/ace"
2011-11-09 17:08:48 +01:00
},
"scripts": {
"test": "node lib/ace/test/all.js",
2012-10-06 14:40:13 +04:00
"postinstall": "node ./install.js -c"
2012-02-29 16:03:18 -08:00
},
"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"
]
2012-05-03 20:33:28 +04:00
}
2012-02-29 16:03:18 -08:00
}
}
2011-01-31 10:30:13 -08:00
}
}