forked from ifandelse/machina.js
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
73 lines (73 loc) · 1.86 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
{
"name" : "machina",
"description" : "A library for creating powerful and flexible finite state machines. Loosely inspired by Erlang/OTP's gen_fsm behavior.",
"version" : "0.3.4",
"homepage" : "http://machina-js.org/",
"repository" : {
"type" : "git",
"url" : "git://github.com/ifandelse/machina.js.git"
},
"author" : "Jim Cowart (http://freshbrewedcode.com/jimcowart)",
"contributors": [
{
"name" : "Jim Cowart",
"email" : "[email protected]",
"url" : "http://freshbrewedcode.com/jimcowart"
},
{
"name" : "Doug Neiner",
"email" : "[email protected]",
"url" : "http://code.dougneiner.com"
},
{
"name" : "Friedemann Altrock",
"email" : "[email protected]",
"url" : "https://github.com/fwg"
},
{
"name" : "Michiel Trimpe",
"email" : "[email protected]",
"url" : "https://github.com/mtrimpe"
},
{
"name" : "Brian Mavity",
"url" : "https://github.com/bmavity"
}
],
"keywords" : [
"state machine",
"finite state machine",
"fsm",
"async",
"workflow",
"state",
"machina",
"machina-js",
"machina.js",
"machinajs"
],
"bugs" : {
"email" : "[email protected]",
"url" : "http://github.com/ifandelse/machina.js/issues"
},
"directories" : { "lib" : "lib" },
"main" : "lib/machina.js",
"engines" : {
"node" : ">=0.4.0"
},
"dependencies" : {
"underscore" : ">=1.1.7"
},
"bundleDependencies" : [ "underscore" ],
"devDependencies" : {},
"licenses" : [
{
"type" : "MIT",
"url" : "http://opensource.org/licenses/MIT"
},
{
"type" : "GPL",
"url" : "http://opensource.org/licenses/GPL-2.0"
}
]
}