-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
56 lines (56 loc) · 1.19 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
{
"name": "yed2kingly",
"version": "0.8.1",
"author": "brucou",
"description": "Supports the conversion of graphs drawn with the yed editor into Kingly state machines",
"devDependencies": {
"assert-diff": "^3.0.0",
"chai": "^4.2.0",
"mocha": "^7.1.1"
},
"bin": {
"@brucou/yed2kingly": "bin/yed2kingly",
"yed2kingly": "bin/yed2kingly",
"y2k": "bin/yed2kingly"
},
"scripts": {
"tests": "cd tests && mocha *specs*"
},
"dependencies": {
"@brucou/utilities": "^0.2.0",
"commander": "^5.0.0",
"fast-xml-parser": "^3.16.0",
"fp-rosetree": "0.6.2",
"fs": "latest",
"kingly": "^0.28.9",
"nearley": "^2.19.3",
"prettier": "^2.0.4",
"pretty-format": "^26.0.0",
"ramda": "^0.27.0"
},
"prettier": {
"trailingComma": "es5",
"tabWidth": 2,
"printWidth": 120,
"semi": true,
"singleQuote": true
},
"sideEffects": false,
"files": [
"index.js",
"helpers.js",
"properties.js",
"template.js"
],
"license": "MIT",
"keywords": [
"state-machine",
"state machine",
"finite state machine",
"state-transducer",
"state transducer",
"automata",
"automaton",
"automata"
]
}