Files
ace/package.json

36 lines
905 B
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": {
2013-03-26 12:05:52 +00:00
"mime": "1.2.x"
},
"devDependencies": {
"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": {
2013-03-26 12:05:52 +00:00
"test": "node lib/ace/test/all.js"
2011-01-31 10:30:13 -08:00
}
}