-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
35 lines (35 loc) · 1.02 KB
/
Copy pathpackage.json
File metadata and controls
35 lines (35 loc) · 1.02 KB
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
{
"name": "@multiarc/ace_heddle",
"version": "2.0.0",
"description": "Custom Ace build (https://github.com/ajaxorg/ace) to support Heddle template language",
"keywords": [
"heddle",
"templates"
],
"homepage": "https://github.com/multiarc/Heddle#readme",
"bugs": {
"url": "https://github.com/multiarc/Heddle/issues"
},
"repository": {
"type": "git",
"url": "git+https://github.com/multiarc/Heddle.git"
},
"license": "Apache-2.0",
"author": "Aliaksandr Kukrash",
"type": "commonjs",
"main": "./src-noconflict/ace.js",
"publishConfig": {
"registry": "https://registry.npmjs.org",
"access": "public",
"provenance": true
},
"scripts": {
"generate": "java -jar antlr-4.13.1-complete.jar -Dlanguage=JavaScript HeddleLexer.g4 HeddleParser.g4 -o js -lib js -package Heddle.Language && node propagate_js.js",
"propagate": "node propagate_js.js",
"test": "node --test \"js/test/**/*.test.js\""
},
"devDependencies": {
"ace-code": "1.32.6",
"antlr4": "^4.13.1"
}
}