-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
50 lines (50 loc) · 1.51 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
{
"name": "@bablr/language-en-es3",
"version": "0.0.0",
"description": "A BABLR language for ES3 JavaScript (tm)",
"engines": {
"node": ">=12.0.0"
},
"type": "module",
"exports": {
".": "./lib/grammar.js",
"./regex": "./lib/regex.js",
"./package.json": "./package.json"
},
"files": ["lib/**/*.js"],
"scripts": {
"build": "macrome build",
"watch": "macrome watch",
"clean": "macrome clean",
"test": "node test/test.js"
},
"sideEffects": false,
"dependencies": {
"@babel/runtime": "7.24.6",
"@bablr/agast-vm-helpers": "^0.5.0",
"@bablr/boot": "^0.6.0",
"@bablr/helpers": "^0.20.5",
"@bablr/language-en-c-comments": "0.4.2"
},
"devDependencies": {
"@bablr/agast-helpers": "^0.5.3",
"@bablr/eslint-config-base": "github:bablr-lang/eslint-config-base#49f5952efed27f94ee9b94340eb1563c440bf64e",
"@bablr/macrome": "0.1.3",
"@bablr/macrome-generator-bablr": "0.3.2",
"@qnighy/dedent": "0.1.1",
"bablr": "^0.5.0",
"enhanced-resolve": "^5.12.0",
"eslint": "^7.32.0",
"eslint-import-resolver-enhanced-resolve": "^1.0.5",
"eslint-plugin-import": "^2.27.5",
"expect": "29.7.0",
"iter-tools-es": "^7.5.3",
"mocha": "10.4.0",
"prettier": "^2.0.5"
},
"keywords": ["bablr-language", "grammar", "english", "es3", "ecmascript"],
"repository": "[email protected]:bablr-lang/language-en-es3.git",
"homepage": "https://github.com/bablr-lang/language-en-es3",
"author": "Conrad Buck <[email protected]>",
"license": "MIT"
}