UNPKG

pascal-utils

Version:

Utility functions for compilation of simple pascal programs, with the Free Pascal compiler, in Node.js.

58 lines (57 loc) 1.68 kB
{ "name": "pascal-utils", "author": "Elhanan Flesch", "description": "Utility functions for compilation of simple pascal programs, with the Free Pascal compiler, in Node.js.", "license": "MIT", "version": "2.0.2", "homepage": "https://github.com/synthetic-borealis/pascal-utils.js", "repository": { "type": "git", "url": "git+https://github.com/synthetic-borealis/pascal-utils.js.git" }, "bugs": { "url": "https://github.com/synthetic-borealis/pascal-utils.js/issues" }, "keywords": [ "Pascal", "Testing" ], "main": "lib/index.js", "types": "types/index.d.ts", "files": [ "lib/", "types/", "docs/" ], "scripts": { "lint": "eslint src/**/*.{ts,js} __tests__/**/*.{ts,js}", "test": "jest", "coverage": "jest --coverage", "docs": "typedoc", "build": "tsc", "clean": "rimraf lib/ types/", "prepack": "npm run clean && npm run build", "postpack": "npm run clean", "prepublish": "in-publish && npm run clean && npm run build || not-in-publish", "postpublish": "npm run clean" }, "devDependencies": { "@types/jest": "^29.5.4", "@types/node": "^18.17.13", "@typescript-eslint/eslint-plugin": "^5.62.0", "@typescript-eslint/parser": "^5.62.0", "eslint": "^8.48.0", "eslint-config-airbnb-base": "^15.0.0", "eslint-config-airbnb-typescript": "^17.1.0", "eslint-plugin-import": "^2.28.1", "eslint-plugin-jest": "^27.2.3", "in-publish": "^2.0.1", "jest": "^29.6.4", "rimraf": "^4.4.1", "ts-jest": "^29.1.1", "ts-node": "^10.9.1", "typedoc": "^0.25.0", "typedoc-plugin-markdown": "^3.16.0", "typescript": "^4.9.5" } }