-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
35 lines (35 loc) · 1.09 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
{
"name": "pnml-moddle-converter",
"version": "0.2.7",
"description": "The pnml-moddle-converter is a TypeScript library that provides functionality for converting between PNML (Petri Net Markup Language) and Moddle XML formats. It includes classes for representing different elements of a Petri net, such as places, transitions, and arcs, in both PNML and Moddle formats. The library also includes parsers for reading PNML and Moddle XML documents, and converters for transforming between these two formats.",
"main": "build/index.js",
"types": "build/types/index.d.ts",
"scripts": {
"dev": "npx nodemon -L",
"build": "rimraf ./build && tsc"
},
"keywords": [
"pnml",
"moddle",
"convert"
],
"author": "Tom Lichtenstein",
"license": "MIT",
"devDependencies": {
"@types/node": "^20.11.30",
"rimraf": "^5.0.5"
},
"dependencies": {
"xmlbuilder2": "^3.1.1"
},
"repository": {
"type": "git",
"url": "git+https://github.com/bptlab/pnml-moddle-converter.git"
},
"files": [
"build/**/*",
"LICENSE",
"package.json",
"README.md"
]
}