-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
41 lines (41 loc) · 940 Bytes
/
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
{
"name": "@customcommander/xmachina",
"version": "0.0.0",
"description": "A small DSL that compiles to XState.",
"keywords": [ "xstate"
, "dsl"
, "domain specific language"
, "fsm"
, "finite state machine"
, "tagged template"],
"homepage": "https://github.com/customcommander/xmachina",
"repository": "https://github.com/customcommander/xmachina",
"bugs": {
"url": "https://github.com/customcommander/xmachina/issues"
},
"author": {
"name": "Julien Gonzalez"
},
"license": "MIT",
"type": "module",
"main": "lib.js",
"bin": "./cli.js",
"scripts": {
"test": "make test"
},
"dependencies": {
"ohm-js": "^17.1.0"
},
"peerDependencies": {
"xstate": "^4.x"
},
"peerDependenciesMeta": {
"xstate": {
"optional": "true"
}
},
"devDependencies": {
"tape": "^5.6.6",
"xstate": "^4.38.2"
}
}