-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathpackage.json
More file actions
36 lines (36 loc) · 916 Bytes
/
package.json
File metadata and controls
36 lines (36 loc) · 916 Bytes
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
{
"name": "abl-tmlanguage",
"version": "1.4.0",
"description": "TextMate grammar for Progress OpenEdge ABL Language",
"main": "",
"type": "commonjs",
"repository": {
"type": "git",
"url": "git@github.com:chriscamicas/abl-tmlanguage.git"
},
"author": "Christophe Camicas",
"license": "MIT",
"bugs": {
"url": "https://github.com/chriscamicas/abl-tmlanguage/issues"
},
"homepage": "https://github.com/chriscamicas/abl-tmlanguage",
"scripts": {
"build": "node index.mjs",
"test": "mocha spec/*/*.spec.js",
"test:single": "mocha",
"test:debug": "mocha 'spec/*/*.spec.js' -- --inspect-brk=5858"
},
"maxDiffSize": 32768,
"devDependencies": {
"chai": "^4.2.0",
"mocha": "^10.2.0",
"vscode-oniguruma": "^1.6.2",
"vscode-textmate": "^7.0.4"
},
"dependencies": {
"oniguruma-parser": "^0.12.0"
},
"files": [
"abl.tmLanguage.json"
]
}