forked from ajaxorg/ace
-
Notifications
You must be signed in to change notification settings - Fork 4
/
package.json
58 lines (58 loc) · 1.74 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
{
"name": "ace-code",
"description": "Ajax.org Code Editor is a full featured source code highlighting editor that powers the Cloud9 IDE",
"version": "1.35.4",
"homepage": "http://github.com/ajaxorg/ace",
"engines": {
"node": ">= 0.6.0"
},
"author": "Fabian Jakobs <[email protected]>",
"main": "src/ace.js",
"typings": "ace.d.ts",
"repository": {
"type": "git",
"url": "http://github.com/ajaxorg/ace.git"
},
"devDependencies": {
"amd-loader": "~0.0.4",
"architect-build": "https://github.com/c9/architect-build/tarball/43a6fdeffe",
"asyncjs": "~0.0.12",
"dryice": "0.4.11",
"eslint": "^8.20.0",
"istanbul": "^0.4.5",
"standard-version": "^9.3.2",
"typescript": "^5.2.2"
},
"mappings": {
"ace": "."
},
"license": "BSD-3-Clause",
"files": [
"src",
"styles",
"ace.d.ts",
"ace-modes.d.ts",
"ace-extensions.d.ts",
"esm-resolver.js",
"translations",
"!**/*_test.js",
"!**/_test"
],
"scripts": {
"start": "node static.js",
"test": "node src/test/all.js",
"cover": "istanbul cover src/test/all.js",
"lint": "eslint \"src/**/*.js\" \"*.js\"",
"fix": "npm run lint -- --fix",
"typecheck": "tsc -p tsconfig.json",
"update-types": "node ./tool/modes-declaration-generator.js",
"changelog": "standard-version",
"prepack": "node tool/esm_resolver_generator.js && node Makefile.dryice.js css --target build-styles && rm -rf styles && mv build-styles/css styles"
},
"standard-version": {
"skip": {
"commit": true,
"tag": true
}
}
}