UNPKG

cumalis-lisp

Version:

A Scheme implementation written in Typescript.

64 lines (63 loc) 1.8 kB
{ "name": "cumalis-lisp", "version": "0.6.1", "description": "A Scheme implementation written in Typescript.", "keywords": [ "SCHEME", "LISP", "R7RS" ], "homepage": "https://github.com/trb-a/cumalis-lisp#readme", "bugs": { "url": "https://github.com/trb-a/cumalis-lisp/issues" }, "repository": { "type": "git", "url": "git+https://github.com/trb-a/cumalis-lisp.git" }, "license": "MIT", "author": "Tsunemasa Akasaka <akasaka@toribune.co.jp>", "main": "dist/index.cjs.js", "module": "dist/index.esm.js", "browser": "dist/index.umd.js", "types": "dist/types/src/index.d.ts", "files": [ "dist" ], "scripts": { "prebuild": "yarn test && yarn clean", "build": "yarn build:js && yarn build:types", "build:js": "vite build", "build:types": "tsc --emitDeclarationOnly", "clean": "rimraf dist", "lint": "eslint src/**/* --fix", "prerelease": "yarn build", "release": "yarn standard-version", "postrelease": "git push --follow-tags", "pretest": "yarn lint", "test": "jest --testPathIgnorePatterns='run.*'", "test:cov": "yarn test -- --coverage", "test:run": "esno __tests__/run.ts", "types:check": "tsc --noEmit", "start": "yarn vite" }, "devDependencies": { "@types/jest": "^26.0.23", "@types/jquery": "^3.5.6", "@types/node": "^15.12.4", "@typescript-eslint/eslint-plugin": "^4.28.0", "@typescript-eslint/parser": "^4.28.0", "esbuild-jest": "^0.5.0", "eslint": "^7.29.0", "eslint-plugin-jest": "^24.3.6", "esno": "^0.9.1", "jest": "^27.0.5", "jquery.terminal": "^2.27.1", "rimraf": "^3.0.2", "standard-version": "^9.3.1", "ts-node": "^10.1.0", "typescript": "^4.3.5", "vite": "^2.5.10" }, "dependencies": {} }