-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
80 lines (80 loc) · 2.5 KB
/
package.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
{
"name": "@netgrif/petriflow",
"version": "2.2.0",
"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"
}
}