/ package.json
package.json
1 { 2 "name": "@bablr/agast-helpers", 3 "description": "Helper functions for working with agAST trees", 4 "version": "0.0.0", 5 "author": "Conrad Buck<conartist6@gmail.com>", 6 "type": "module", 7 "files": [ 8 "lib" 9 ], 10 "exports": { 11 "./btree": "./lib/btree.js", 12 "./builders": "./lib/builders.js", 13 "./path": "./lib/path.js", 14 "./print": "./lib/print.js", 15 "./shorthand": "./lib/shorthand.js", 16 "./stream": "./lib/stream.js", 17 "./symbols": "./lib/symbols.js", 18 "./template": "./lib/template.js", 19 "./tree": "./lib/tree.js" 20 }, 21 "sideEffects": false, 22 "scripts": { 23 "test": "mocha test/*.test.js" 24 }, 25 "dependencies": { 26 "@bablr/btree": "^0.1.0", 27 "@bablr/coroutine": "0.1.0", 28 "@bablr/weak-stack": "1.0.0", 29 "@iter-tools/imm-stack": "1.1.0" 30 }, 31 "devDependencies": { 32 "@bablr/eslint-config-base": "github:bablr-lang/eslint-config-base#d834ccc52795d6c3b96ecc6c419960fceed221a6", 33 "enhanced-resolve": "^5.12.0", 34 "eslint": "^8.32.0", 35 "eslint-import-resolver-enhanced-resolve": "^1.0.5", 36 "eslint-plugin-import": "^2.27.5", 37 "mocha": "^10.8.2", 38 "prettier": "^2.6.2" 39 }, 40 "repository": "github:bablr-lang/agast-helpers", 41 "homepage": "https://github.com/bablr-lang/agast-helpers", 42 "license": "MIT" 43 }