UNPKG

plantuml-parser

Version:

Parse PlantUML with JavaScript or TypeScript

93 lines (92 loc) 2.55 kB
{ "name": "plantuml-parser", "version": "0.4.0", "description": "Parse PlantUML with JavaScript or TypeScript", "main": "dist/index.js", "types": "dist/index.d.ts", "files": [ "conf.js", "dist/**/*" ], "dependencies": { "async": "^3.2.0", "fast-glob": "^3.2.4", "get-stdin": "^8.0.0", "json-colorizer": "^2.2.2", "pegjs-backtrace": "^0.2.0", "read-vinyl-file-stream": "^2.0.3", "require-dir": "^1.2.0", "serialize-error": "^7.0.1", "yargs": "^16.0.3" }, "devDependencies": { "@types/node": "^14.11.8", "@typescript-eslint/eslint-plugin": "^4.4.0", "@typescript-eslint/parser": "^4.4.0", "chai": "^4.2.0", "coveralls": "^3.1.0", "eslint": "^7.11.0", "eslint-config-standard": "^14.1.1", "eslint-plugin-import": "^2.22.1", "eslint-plugin-node": "^11.1.0", "eslint-plugin-promise": "^4.2.1", "eslint-plugin-standard": "^4.0.1", "fancy-log": "^1.3.3", "gulp": "^4.0.2", "gulp-mocha": "^8.0.0", "gulp-pegjs": "^0.2.0", "gulp-rename": "^2.0.0", "gulp-sourcemaps": "^2.6.5", "gulp-typescript": "^6.0.0-alpha.1", "mocha": "^8.1.3", "nyc": "^15.1.0", "pegjs": "^0.10.0", "source-map-support": "^0.5.19", "ts-node": "^9.0.0", "ts-pegjs": "^0.2.7", "typescript": "^4.0.3" }, "bin": { "plantuml-parser": "dist/bin/cli.js" }, "scripts": { "prepublishOnly": "git clean -f -f -d -x -e 'node_modules' && npm run build", "start": "node dist/bin/cli.js", "build": "gulp build", "test": "nyc gulp test && nyc check-coverage --lines 65 --functions 75 --branches 50 && eslint '**/*.js' '**/*.ts' && git diff --check $(git hash-object -t tree /dev/null)", "watch": "gulp watch", "format-fix": "eslint --fix '**/*.js' '**/*.ts'", "fixtures": "gulp test-fixtures-update && git add -u test/fixtures || true", "coverage-report": "nyc report --reporter=lcov" }, "repository": { "type": "git", "url": "git+https://github.com/Enteee/plantuml-parser.git" }, "keywords": [ "PlantUML" ], "author": "Ente", "license": " Apache-2.0", "bugs": { "url": "https://github.com/Enteee/plantuml-parser/issues" }, "homepage": "https://github.com/Enteee/plantuml-parser#readme", "nyc": { "all": true, "sourceMap": true, "extension": [ ".ts", ".tsx" ], "include": [ "src/**/*.ts", "dist/**/*.js" ], "exclude": [ "**/*.d.ts", "dist/plantuml-trace.js", "dist/bin/" ] } }