UNPKG

@fink/larix

Version:

A parser for generating fink's AST.

67 lines (66 loc) 1.75 kB
{ "name": "@fink/larix", "keywords": [ "fink", "fink-lang", "ast", "compiler", "parser" ], "license": "MIT", "engines": { "node": ">=14.13.0" }, "type": "module", "exports": { "./*": { "import": "./*", "require": "./cjs/*" } }, "version": "20.3.0", "private": false, "publishConfig": { "access": "public" }, "repository": { "type": "git", "url": "git@github.com:fink-lang/larix" }, "bugs": "https://github.com/fink-lang/larix/issues", "homepage": "https://github.com/fink-lang/larix", "scripts": { "default": "run clean test build", "clean": "rimraf ./build", "build": "run build:*", "build:dir": "mkdir -p ./build/pkg/", "build:fnk-esm": "fnk --module-type esm --src ./src --out-dir build/pkg --ignore './src/**/*.test.fnk'", "build:fnk-cjs": "fnk --module-type cjs --src ./src --out-dir build/pkg/cjs --ignore './src/**/*.test.fnk'", "build:files-cjs": "cp package-cjs.json ./build/pkg/cjs/package.json", "build:files": "cp package.json ./README.md ./LICENSE ./build/pkg/", "test": "run jest", "jest": "jest --verbose --runInBand --no-cache ", "cd": "run clean test build release", "release": "semantic-release" }, "dependencies": { "@fink/prattler": "^7.2.0", "@fink/std-lib": "^8.5.0" }, "devDependencies": { "@fink/cli": "^8.3.0", "@fink/jest": "^7.2.0", "@fink/larix": "^20.0.0", "@fink/loxia": "^23.0.2", "commitizen": "^4.0.5", "cz-conventional-changelog": "^3.1.0", "jest-cli": "^27.0.0", "npx-run": "^2.1.2", "semantic-release": "^18.0.0" }, "config": { "commitizen": { "path": "./node_modules/cz-conventional-changelog" } } }