-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
55 lines (55 loc) · 1.5 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
{
"name": "@bablr/language-en-regex-vm-pattern",
"version": "0.0.0",
"description": "A BABLR language for nonbacktracking JS-style regexes",
"engines": {
"node": ">=12.0.0"
},
"type": "module",
"exports": {
".": "./lib/grammar.js",
"./package.json": "./package.json"
},
"files": [
"lib/**/*.js"
],
"sideEffects": false,
"scripts": {
"build": "macrome build",
"watch": "macrome watch",
"clean": "macrome clean",
"test": "mocha"
},
"dependencies": {
"@babel/runtime": "^7.23.2",
"@bablr/helpers": "^0.20.5",
"@bablr/agast-helpers": "^0.5.3",
"@bablr/agast-vm-helpers": "^0.5.0",
"iter-tools-es": "^7.5.3"
},
"devDependencies": {
"@bablr/boot": "^0.6.0",
"@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.6.0",
"enhanced-resolve": "^5.12.0",
"eslint": "^8.47.0",
"eslint-import-resolver-enhanced-resolve": "^1.0.5",
"eslint-plugin-import": "^2.27.5",
"expect": "^29.6.2",
"mocha": "^10.4.0",
"prettier": "^2.0.5"
},
"keywords": [
"bablr-language",
"grammar",
"english",
"regex"
],
"repository": "[email protected]:bablr-lang/language-en-regex-vm-pattern.git",
"homepage": "https://github.com/bablr-lang/language-en-regex-vm-pattern",
"author": "Conrad Buck <[email protected]>",
"license": "MIT"
}