-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
55 lines (55 loc) · 1.7 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/helpers",
"description": "Command helpers for use in writing BABLR grammars",
"version": "0.0.0",
"author": "Conrad Buck<[email protected]>",
"type": "module",
"files": [
"lib"
],
"exports": {
"./builders": "./lib/builders.js",
"./decorators": "./lib/decorators.js",
"./enhancers": "./lib/enhancers.js",
"./grammar": "./lib/grammar.js",
"./object": "./lib/object.js",
"./path": "./lib/path.js",
"./productions": "./lib/productions.js",
"./shorthand": "./lib/shorthand.js",
"./source": "./lib/source.js",
"./stream": "./lib/stream.js",
"./symbols": "./lib/symbols.js",
"./tree": "./lib/tree.js",
"./trivia": "./lib/trivia.js",
".": "./lib/index.js"
},
"sideEffects": false,
"scripts": {
"build": "macrome build",
"watch": "macrome watch",
"clean": "macrome clean"
},
"dependencies": {
"@bablr/language_enhancer-debug-log": "0.8.1",
"@bablr/strategy_enhancer-debug-log": "0.7.2",
"@bablr/agast-helpers": "0.6.1",
"@bablr/agast-vm-helpers": "0.6.1",
"@bablr/coroutine": "0.1.0",
"@iter-tools/imm-stack": "1.1.0",
"iter-tools-es": "^7.5.3"
},
"devDependencies": {
"@bablr/boot": "0.7.2",
"@bablr/eslint-config-base": "github:bablr-lang/eslint-config-base#d834ccc52795d6c3b96ecc6c419960fceed221a6",
"@bablr/macrome": "0.1.3",
"@bablr/macrome-generator-bablr": "0.3.2",
"enhanced-resolve": "^5.12.0",
"eslint": "^7.32.0",
"eslint-import-resolver-enhanced-resolve": "^1.0.5",
"eslint-plugin-import": "^2.27.5",
"prettier": "^2.6.2"
},
"repository": "github:bablr-lang/helpers",
"homepage": "https://github.com/bablr-lang/helpers",
"license": "MIT"
}