parjs
Version:
A parser-combinator library for JavaScript.
68 lines (66 loc) • 1.7 kB
JSON
{
"name": "parjs",
"version": "0.12.7",
"repository": "https://github.com/GregRos/parjs",
"homepage": "https://github.com/GregRos/parjs",
"typings": "index",
"description": "A parser-combinator library for JavaScript.",
"main": "index.js",
"scripts": {
"test": "nyc node ./dist/test/runner.js",
"build": "rm -rf dist/ && tsc",
"docs": "node dist/generate-docs/run.js",
"do-publish": "yarn run build; node dist/publish.js; cd .tmp/publish; yarn publish"
},
"keywords": [
"parser",
"combinator",
"parsing",
"text",
"string",
"parser combinator",
"parser-combinator",
"functional"
],
"author": "Greg Rosenbaum",
"license": "MIT",
"dependencies": {
"char-info": "^0.3.1",
"lodash": "^4.17.13"
},
"devDependencies": {
"@types/jasmine": "^3.3.0",
"@types/lodash": "^4.14.104",
"@types/node": "^10.12.9",
"codecov": "^3.1.0",
"globby": "^9.2.0",
"jasmine": "^3.3.0",
"jasmine-core": "^3.3.0",
"jasmine-spec-reporter": "^4.2.1",
"nyc": "^13.1.0",
"retarget-sourcemaps-after-move": "0.1.1",
"shelljs": "^0.8.3",
"source-map": "^0.7.3",
"source-map-support": "^0.5.9",
"tslint": "^5.17.0",
"tslint-config-gregros": "^1.2.1",
"typedoc": "^0.15.0",
"typedoc-plugin-example-tag": "^1.0.2",
"typedoc-plugin-external-module-name": "^2.1.0",
"typedoc-plugin-internal-external": "^2.0.2",
"typescript": "^3.5.1"
},
"optionalDependencies": {},
"nyc": {
"produce-source-map": true,
"include": [
"dist/lib/**/*.js"
],
"reporter": [
"lcov",
"text-summary"
],
"sourceMap": true
},
"sideEffects": false
}