forked from ajaxorg/ace
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
40 lines (40 loc) · 1.08 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
{
"name": "ace",
"description": "Ajax.org Code Editor is a full featured source code highlighting editor that powers the Cloud9 IDE",
"version": "1.4.12",
"homepage": "http://github.com/ajaxorg/ace",
"engines": {
"node": ">= 0.6.0"
},
"author": "Fabian Jakobs <fabian@c9.io>",
"main": "lib/ace",
"typings": "ace.d.ts",
"repository": {
"type": "git",
"url": "http://github.com/ajaxorg/ace.git"
},
"devDependencies": {
"asyncjs": "~0.0.12",
"amd-loader": "~0.0.4",
"dryice": "0.4.11",
"architect-build": "https://github.com/c9/architect-build/tarball/43a6fdeffe"
},
"mappings": {
"ace": "."
},
"licenses": [
{
"type": "BSD New",
"url": "http://opensource.org/licenses/BSD-3-Clause"
}
],
"directories": {
"lib": "lib/ace"
},
"scripts": {
"start": "node static.js",
"test": "node lib/ace/test/all.js",
"lint": "eslint \"lib/ace/**/*.js\"",
"fix": "eslint --fix 'lib/ace/**/*.js'"
}
}