1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374 |
- {
- "name": "tsbuffer-validator",
- "version": "2.1.2",
- "description": "Validator for TSBuffer values",
- "main": "index.js",
- "exports": {
- "require": "./index.js",
- "import": "./index.mjs"
- },
- "typings": "./index.d.ts",
- "scripts": {
- "test": "npx mocha",
- "coverage": "nyc mocha test/**/*.test.ts && start coverage\\index.html",
- "build": "npm run build:js && npm run build:dts && npm run build:doc && cp package.json LICENSE README.md dist/",
- "build:js": "rm -rf dist && npx rollup -c",
- "build:dts": "rm -rf lib && npx tsc && npx api-extractor run --local --verbose && node scripts/removePrivate.js && rm -rf lib",
- "build:doc": "rm -rf docs/api && npx api-documenter markdown --input temp --output docs/api",
- "bp": "npm version patch && npm run build && cd dist && npm publish & cd.."
- },
- "repository": {
- "type": "git",
- "url": "git+https://github.com/k8w/tsbuffer-validator.git"
- },
- "keywords": [
- "k8w",
- "tsbuffer",
- "typescript",
- "validator",
- "interface",
- "protobuf",
- "buffer",
- "json",
- "schema",
- "validate"
- ],
- "author": "k8w",
- "license": "MIT",
- "bugs": {
- "url": "https://github.com/k8w/tsbuffer-validator/issues"
- },
- "homepage": "https://github.com/k8w/tsbuffer-validator#readme",
- "dependencies": {
- "k8w-extend-native": "^1.4.6",
- "tsbuffer-schema": "^2.2.0",
- "tslib": "*"
- },
- "nyc": {
- "extension": [
- ".ts"
- ],
- "exclude": [
- "**/*.d.ts",
- "coverage",
- "test",
- "dist"
- ],
- "reporter": [
- "html"
- ],
- "all": true
- },
- "devDependencies": {
- "@microsoft/api-documenter": "^7.23.15",
- "@microsoft/api-extractor": "^7.39.0",
- "@types/mocha": "^8.2.3",
- "@types/node": "^20.10.5",
- "mocha": "^9.2.2",
- "nyc": "^15.1.0",
- "rollup": "^2.79.1",
- "rollup-plugin-typescript2": "^0.36.0",
- "ts-node": "^10.9.2",
- "typescript": "^4.9.5"
- }
- }
|