CoolFace
Datasetpublic

basant307/AI_Governance_Project

sourceHugging Faceapache-2.0updated 2mo agoView on Hugging Face
0likes48downloads
package.json116 linesDownload Raw Back to peberminta
1{2  "name": "peberminta",3  "version": "0.9.0",4  "description": "Simple, transparent parser combinators toolkit that supports any tokens",5  "keywords": [6    "parser",7    "parser-combinators",8    "parsec"9  ],10  "repository": {11    "type": "git",12    "url": "git+https://github.com/mxxii/peberminta.git"13  },14  "bugs": {15    "url": "https://github.com/mxxii/peberminta/issues"16  },17  "homepage": "https://github.com/mxxii/peberminta",18  "author": "KillyMXI",19  "funding": "https://ko-fi.com/killymxi",20  "license": "MIT",21  "exports": {22    ".": {23      "import": "./lib/core.mjs",24      "require": "./lib/core.cjs"25    },26    "./char": {27      "import": "./lib/char.mjs",28      "require": "./lib/char.cjs"29    }30  },31  "type": "module",32  "main": "./lib/core.cjs",33  "module": "./lib/core.mjs",34  "types": "./lib/core.d.ts",35  "typesVersions": {36    "*": {37      "char": [38        "./lib/char.d.ts"39      ],40      "*": [41        "./lib/core.d.ts"42      ]43    }44  },45  "files": [46    "lib"47  ],48  "sideEffects": false,49  "scripts": {50    "build:docs": "typedoc",51    "build:deno": "denoify",52    "build:rollup": "rollup -c",53    "build:types": "tsc --declaration --emitDeclarationOnly && rimraf lib/util.d.ts",54    "build": "npm run clean && concurrently npm:build:*",55    "checkAll": "npm run lint && npm test",56    "clean": "rimraf lib && rimraf docs && rimraf deno",57    "cover": "c8 --reporter=lcov --reporter=text-summary ava \"test/!(examples).ts\" --timeout=60s",58    "example:bf1": "npm run ts -- ./examples/bf1.ts",59    "example:bf2": "npm run ts -- ./examples/bf2.ts",60    "example:calc": "npm run ts -- ./examples/calc.ts",61    "example:csv": "npm run ts -- ./examples/csv.ts",62    "example:hexColor": "npm run ts -- ./examples/hexColor.ts",63    "example:json": "npm run ts -- ./examples/json.ts",64    "example:nonDec": "npm run ts -- ./examples/nonDec.ts",65    "lint:eslint": "eslint .",66    "lint:md": "markdownlint-cli2",67    "lint": "concurrently npm:lint:*",68    "prepublishOnly": "npm run build && npm run checkAll",69    "test:ava": "ava --timeout=20s",70    "test:tsc": "tsc --noEmit --project tsconfig.tsc.json",71    "test": "concurrently npm:test:*",72    "ts": "node --experimental-specifier-resolution=node --loader ts-node/esm"73  },74  "dependencies": {},75  "devDependencies": {76    "@rollup/plugin-typescript": "^11.0.0",77    "@tsconfig/node14": "^1.0.3",78    "@types/node": "14.18.36",79    "@typescript-eslint/eslint-plugin": "^5.48.2",80    "@typescript-eslint/parser": "^5.48.2",81    "ava": "^5.1.1",82    "c8": "^7.12.0",83    "concurrently": "^7.6.0",84    "denoify": "^1.4.5",85    "eslint": "^8.32.0",86    "eslint-plugin-jsonc": "^2.6.0",87    "eslint-plugin-tsdoc": "^0.2.17",88    "expect-type": "^0.15.0",89    "leac": "^0.6.0",90    "markdownlint-cli2": "^0.6.0",91    "rimraf": "^4.1.1",92    "rollup": "^2.79.1",93    "rollup-plugin-cleanup": "^3.2.1",94    "ts-node": "^10.9.1",95    "tslib": "^2.4.1",96    "typedoc": "~0.23.24",97    "typescript": "~4.9.4"98  },99  "ava": {100    "extensions": {101      "ts": "module"102    },103    "files": [104      "test/**/*"105    ],106    "nodeArguments": [107      "--loader=ts-node/esm",108      "--experimental-specifier-resolution=node"109    ],110    "verbose": true111  },112  "denoify": {113    "out": "./deno"114  }115}116 
basant307/AI_Governance_Project · CoolFace