basant307/AI_Governance_Project
048
1{2 "name": "leac",3 "version": "0.6.0",4 "description": "Lexer / tokenizer",5 "keywords": [6 "lexer",7 "tokenizer",8 "lex",9 "token"10 ],11 "repository": {12 "type": "git",13 "url": "git+https://github.com/mxxii/leac.git"14 },15 "bugs": {16 "url": "https://github.com/mxxii/leac/issues"17 },18 "homepage": "https://github.com/mxxii/leac",19 "author": "KillyMXI",20 "funding": "https://ko-fi.com/killymxi",21 "license": "MIT",22 "exports": {23 "import": "./lib/leac.mjs",24 "require": "./lib/leac.cjs"25 },26 "type": "module",27 "main": "./lib/leac.cjs",28 "module": "./lib/leac.mjs",29 "types": "./lib/leac.d.ts",30 "files": [31 "lib"32 ],33 "scripts": {34 "build:docs": "typedoc",35 "build:deno": "denoify",36 "build:rollup": "rollup -c",37 "build:types": "tsc --declaration --emitDeclarationOnly && rimraf lib/!(leac).d.ts",38 "build": "npm run clean && concurrently npm:build:*",39 "checkAll": "npm run lint && npm test",40 "clean": "rimraf lib && rimraf docs && rimraf deno",41 "example:calc": "npm run ts -- ./examples/calc.ts",42 "example:json": "npm run ts -- ./examples/json.ts",43 "lint:eslint": "eslint .",44 "lint:md": "markdownlint-cli2",45 "lint": "concurrently npm:lint:*",46 "prepublishOnly": "npm run build && npm run checkAll",47 "test": "ava",48 "ts": "node --experimental-specifier-resolution=node --loader ts-node/esm"49 },50 "dependencies": {},51 "devDependencies": {52 "@rollup/plugin-typescript": "^8.3.4",53 "@tsconfig/node14": "^1.0.3",54 "@types/node": "14.18.23",55 "@typescript-eslint/eslint-plugin": "^5.33.1",56 "@typescript-eslint/parser": "^5.33.1",57 "ava": "^4.3.1",58 "concurrently": "^7.3.0",59 "denoify": "^1.0.0",60 "eslint": "^8.22.0",61 "eslint-plugin-jsonc": "^2.4.0",62 "eslint-plugin-tsdoc": "^0.2.16",63 "markdownlint-cli2": "^0.5.1",64 "rimraf": "^3.0.2",65 "rollup": "^2.78.0",66 "rollup-plugin-terser": "^7.0.2",67 "ts-node": "^10.9.1",68 "tslib": "^2.4.0",69 "typedoc": "~0.22.18",70 "typedoc-plugin-markdown": "~3.12.1",71 "typescript": "~4.7.4"72 },73 "ava": {74 "extensions": {75 "ts": "module"76 },77 "files": [78 "test/**/*"79 ],80 "nodeArguments": [81 "--loader=ts-node/esm",82 "--experimental-specifier-resolution=node"83 ],84 "verbose": true85 },86 "denoify": {87 "out": "./deno"88 }89}90 