forked from ifandelse/machina.js
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
163 lines (163 loc) · 4.01 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
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
{
"name": "machina",
"description": "A library for creating powerful and flexible finite state machines. Loosely inspired by Erlang/OTP's gen_fsm behavior.",
"version": "3.0.0",
"homepage": "http://machina-js.org/",
"repository": {
"type": "git",
"url": "git://github.com/ifandelse/machina.js.git"
},
"publishConfig": {
"registry": "https://registry.npmjs.org"
},
"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"
},
{
"name": "Ignacio Carbajo",
"url": "http://ignaciocarbajo.com"
},
{
"name": "Joel Purra",
"url": "http://joelpurra.com/"
}
],
"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",
"files": [
"LICENSE",
"lib"
],
"engines": {
"node": ">=0.4.0"
},
"dependencies": {
"lodash": "3.x"
},
"devDependencies": {
"bower": "1.x",
"express": "~3.4.7",
"gulp": "~3.9.0",
"gulp-changed": "^1.2.1",
"gulp-eslint": "^1.1.1",
"gulp-header": "~1.2.2",
"gulp-hint-not": "~0.0.3",
"gulp-imports": "~0.0.1",
"gulp-jscs": "^1.6.0",
"gulp-jshint": "^1.11.0",
"gulp-rename": "~1.2.2",
"gulp-sourcemaps": "^1.6.0",
"gulp-spawn-mocha": "^2.2.1",
"gulp-uglify": "~1.2.0",
"gulp-util": "~3.0.4",
"gulp-webpack": "^1.5.0",
"imports-loader": "^0.6.3",
"istanbul": "^0.3.2",
"istanbul-instrumenter-loader": "^0.1.3",
"jshint-stylish": "^2.0.1",
"karma": "^0.13.9",
"karma-chrome-launcher": "^0.1.5",
"karma-coverage": "^0.2.6",
"karma-firefox-launcher": "^0.1.3",
"karma-mocha": "^0.2.0",
"karma-phantomjs-launcher": "^0.1.4",
"karma-safari-launcher": "^0.1.1",
"karma-sourcemap-loader": "^0.3.0",
"karma-spec-reporter": "0.0.20",
"karma-webpack": "^1.7.0",
"mocha": "^2.2.5",
"open": "~0.0.4",
"should": "^6.0.3",
"sinon": "~1.11.0",
"source-map-loader": "^0.1.5"
},
"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",
"mocha": "gulp mocha",
"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",
"lint": "gulp lint",
"format": "gulp format",
"watch": "gulp watch"
}
}