forked from ifandelse/machina.js
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
126 lines (126 loc) · 3.05 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
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
{
"name": "machina",
"description": "A library for creating powerful and flexible finite state machines. Loosely inspired by Erlang/OTP's gen_fsm behavior.",
"version": "1.0.0-2",
"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": "jim@ifandelse.com",
"url": "http://ifandelse.com"
},
{
"name": "Doug Neiner",
"email": "doug@dougneiner.com",
"url": "http://code.dougneiner.com"
},
{
"name": "Friedemann Altrock",
"email": "frodenius@gmail.com",
"url": "https://github.com/fwg"
},
{
"name": "Michiel Trimpe",
"email": "michiel@trimpe.nl",
"url": "https://github.com/mtrimpe"
},
{
"name": "Brian Mavity",
"url": "https://github.com/bmavity"
},
{
"name": "Alex Robson",
"email": "arobson@gmail.com",
"url": "http://github.com/arobson"
},
{
"name": "Dominic Barnes",
"email": "dominic@dbarnes.info",
"url": "http://github.com/dominicbarnes"
},
{
"name" : "Tim Harper",
"email" : "timcharper@gmail.com",
"url" : "http://tim.theenchanter.com/"
},
{
"name": "James Pooton",
"email": "james@codelica.com",
"url": "http://github.com/codelica"
},
{
"name": "Brad Fol",
"url": "https://github.com/bradfol"
}
],
"keywords": [
"state machine",
"finite state machine",
"fsm",
"async",
"workflow",
"state",
"machina",
"machina-js",
"machina.js",
"machinajs",
"hierarchical",
"state chart",
"state charts"
],
"bugs": {
"email": "jim@ifandelse.com",
"url": "http://github.com/ifandelse/machina.js/issues"
},
"directories": {
"lib": "lib"
},
"main": "lib/machina.js",
"engines": {
"node": ">=0.4.0"
},
"dependencies": {
"lodash": "^3.10.1"
},
"devDependencies": {
"bower": "~1.2.8",
"express": "~3.4.7",
"gulp": "~3.8.10",
"gulp-beautify": "~1.0.3",
"gulp-header": "~1.0.2",
"gulp-hint-not": "~0.0.3",
"gulp-imports": "~0.0.1",
"gulp-plato": "~0.1.0",
"gulp-rename": "~0.2.1",
"gulp-spawn-mocha": "^0.5.1",
"gulp-uglify": "~0.1.0",
"gulp-util": "~2.2.12",
"istanbul": "^0.3.2",
"mocha": "^2.0.1",
"open": "~0.0.4",
"should": "^4.0.4",
"sinon": "1.11.1"
},
"licenses": [
{
"type": "MIT",
"url": "http://opensource.org/licenses/MIT"
},
{
"type": "GPL",
"url": "http://opensource.org/licenses/GPL-2.0"
}
],
"scripts": {
"build": "gulp",
"start": "gulp server",
"test": "./node_modules/mocha/bin/mocha -r spec/helpers/node-setup.js spec",
"coverage": "./node_modules/istanbul/lib/cli.js cover ./node_modules/mocha/bin/_mocha -x 'spec/**/*' -- -r spec/helpers/node-setup.js spec spec/*.spec.js",
"show-coverage": "open ./coverage/lcov-report/index.html"
}
}