forked from ifandelse/machina.js
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
97 lines (97 loc) · 2.26 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
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
{
"name": "machina",
"description": "A library for creating powerful and flexible finite state machines. Loosely inspired by Erlang/OTP's gen_fsm behavior.",
"version": "0.4.0",
"homepage": "http://machina-js.org/",
"repository": {
"type": "git",
"url": "git://github.com/ifandelse/machina.js.git"
},
"author": "Jim Cowart (http://ifandelse.com)",
"contributors": [ {
"name": "Jim Cowart",
"email": "[email protected]",
"url": "http://ifandelse.com"
}, {
"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"
}, {
"name": "Alex Robson",
"email": "[email protected]",
"url": "http://github.com/arobson"
}, {
"name": "Dominic Barnes",
"email": "[email protected]",
"url": "http://github.com/dominicbarnes"
}, {
"name": "James Pooton",
"email": "[email protected]",
"url": "http://github.com/codelica"
} ],
"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": {
"lodash": "~2.4.1"
},
"devDependencies": {
"bower": "~1.2.8",
"gulp": "~3.4.0",
"gulp-imports": "~0.0.1",
"gulp-header": "~1.0.2",
"gulp-hint-not": "~0.0.3",
"gulp-uglify": "~0.1.0",
"gulp-rename": "~0.2.1",
"gulp-plato": "~0.1.0",
"gulp-beautify": "~1.0.3",
"express": "~3.4.7",
"open": "~0.0.4",
"gulp-util": "~2.2.12",
"expect.js": "~0.2.0",
"mocha": "^1.20.1"
},
"licenses": [ {
"type": "MIT",
"url": "http://opensource.org/licenses/MIT"
}, {
"type": "GPL",
"url": "http://opensource.org/licenses/GPL-2.0"
} ],
"scripts": {
"test": "mocha ./spec/*.js",
"build": "gulp",
"start": "gulp server"
}
}