UNPKG

@netgrif/petriflow

Version:

Javascript / Typescript library of Petriflow objects

81 lines (80 loc) 2.56 kB
{ "name": "@netgrif/petriflow", "version": "2.2.1", "description": "Javascript / Typescript library of Petriflow objects", "main": "dist/petriflow.js", "module": "dist/petriflow.esm.js", "types": "dist/petriflow.d.ts", "repository": { "type": "git", "url": "git+https://github.com/netgrif/petriflow.js.git" }, "license": "Apache-2.0", "bugs": { "url": "https://github.com/netgrif/petriflow.js/issues" }, "homepage": "https://netgrif.github.io/petriflow.js/", "keywords": [ "petriflow", "pf", "netgrif", "petri nets", "workflow" ], "contributors": [ "Milan Mladoniczky <mladoniczky@netgrif.com>", "Juraj Mažári <mazari@netgrif.com>", "Tomáš Kováčik <kovacik@netgrif.com>", "Jakub Kovář <kovar@netgrif.com>" ], "files": [ "dist", "LICENSE.txt", "CHANGELOG.md", "README.md", "package.json", "!**/*.spec.*", "!**/test" ], "type": "module", "scripts": { "build": "tsc -p tsconfig.dts.json && rollup -c", "build:test": "npm run build && npm run test:unit", "build:test_all": "npm run build && npm run test", "test": "npm run test:lint && npm run test:spell && npm run test:unit", "test:lint": "eslint src --ext .ts", "test:spell": "cspell -s \"{*.md,src/**/*.ts}\"", "test:unit": "jest", "doc": "typedoc --entryPoints src/lib/index.ts --exclude **/*.spec.* --out docs --theme default" }, "devDependencies": { "@rollup/plugin-terser": "~0.4.4", "@rollup/plugin-typescript": "~11.1.6", "@typescript-eslint/eslint-plugin": "~7.14.1", "@typescript-eslint/parser": "~7.14.1", "cspell": "~8.9.1", "eslint": "~8.56.0", "eslint-plugin-eslint-comments": "~3.2.0", "eslint-plugin-import": "~2.29.1", "jest": "~29.7.0", "jest-environment-jsdom": "~29.7.0", "jest-sonar-reporter": "~2.0.0", "rollup": "~4.18.0", "rollup-plugin-delete": "~2.0.0", "rollup-plugin-dts": "~6.1.1", "typedoc": "~0.26.3", "typescript": "~5.5.2" }, "dependencies": { "tslib": "~2.6.3" }, "jest": { "verbose": true, "collectCoverage": true, "testEnvironment": "jsdom", "testResultsProcessor": "jest-sonar-reporter" }, "optionalDependencies": { "@rollup/rollup-linux-x64-gnu": "^4.19.0" } }