UNPKG

parse-english

Version:
103 lines (102 loc) 2.6 kB
{ "name": "parse-english", "version": "7.0.0", "description": "English natural language parser", "license": "MIT", "keywords": [ "nlcst", "english", "natural", "language", "parser" ], "repository": "wooorm/parse-english", "bugs": "https://github.com/wooorm/parse-english/issues", "funding": { "type": "github", "url": "https://github.com/sponsors/wooorm" }, "author": "Titus Wormer <tituswormer@gmail.com> (https://wooorm.com)", "contributors": [ "Titus Wormer <tituswormer@gmail.com> (https://wooorm.com)" ], "sideEffects": false, "type": "module", "exports": "./index.js", "files": [ "lib/", "index.d.ts", "index.js" ], "dependencies": { "@types/nlcst": "^2.0.0", "nlcst-to-string": "^4.0.0", "parse-latin": "^7.0.0", "unist-util-modify-children": "^4.0.0", "unist-util-visit-children": "^3.0.0" }, "devDependencies": { "@types/node": "^20.0.0", "@types/regexgen": "^1.0.0", "c8": "^8.0.0", "is-hidden": "^2.0.0", "nlcst-test": "^4.0.0", "prettier": "^3.0.0", "regexgen": "^1.0.0", "remark-cli": "^11.0.0", "remark-preset-wooorm": "^9.0.0", "type-coverage": "^2.0.0", "typescript": "^5.0.0", "vfile": "^6.0.0", "xo": "^0.55.0" }, "scripts": { "prepack": "npm run build && npm run format", "build": "tsc --build --clean && tsc --build && type-coverage", "format": "remark . -qfo && prettier . -w --log-level warn && xo --fix", "generate": "node --conditions development script/generate-regex.js", "test-api-prod": "node --conditions production test/index.js", "test-api-dev": "node --conditions development test/index.js", "test-api": "npm run test-api-dev && npm run test-api-prod", "test-coverage": "c8 --100 --reporter lcov npm run test-api", "test": "npm run build && npm run format && npm run test-coverage" }, "prettier": { "bracketSpacing": false, "semi": false, "singleQuote": true, "tabWidth": 2, "trailingComma": "none", "useTabs": false }, "remarkConfig": { "plugins": [ "remark-preset-wooorm" ] }, "typeCoverage": { "atLeast": 100, "detail": true, "ignoreCatch": true, "strict": true }, "xo": { "overrides": [ { "files": [ "script/**/*.js", "test/**/*.js" ], "rules": { "no-await-in-loop": "off" } } ], "prettier": true, "rules": { "complexity": "off", "max-depth": "off", "unicorn/prefer-at": "off" } } }