-
Notifications
You must be signed in to change notification settings - Fork 147
/
package.json
172 lines (172 loc) · 4.4 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
164
165
166
167
168
169
170
171
172
{
"name": "machina",
"description": "A library for creating powerful and flexible finite state machines. Loosely inspired by Erlang/OTP's gen_fsm behavior.",
"version": "5.0.0-pre.1",
"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": "[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": "Tim Harper",
"email": "[email protected]",
"url": "http://tim.theenchanter.com/"
},
{
"name": "James Pooton",
"email": "[email protected]",
"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": "[email protected]",
"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": "^4.17.5"
},
"devDependencies": {
"@babel/core": "^7.14.6",
"@babel/eslint-parser": "^7.14.7",
"@babel/polyfill": "^7.12.1",
"@babel/preset-env": "^7.14.7",
"@babel/register": "^7.14.5",
"babel-loader": "^8.2.2",
"babel-plugin-add-module-exports": "^1.0.4",
"bower": "^1.8.14",
"express": "^3.11.0",
"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",
"typescript": "^5.0.4",
"unminified-webpack-plugin": "^3.0.0",
"webpack": "^5.41.1",
"webpack-cli": "^4.7.2"
},
"licenses": [
{
"type": "MIT",
"url": "http://opensource.org/licenses/MIT"
},
{
"type": "GPL",
"url": "http://opensource.org/licenses/GPL-2.0"
}
],
"scripts": {
"build": "npx webpack --config webpack.config.js; npx tsc",
"start": "npm run build; 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",
"lint": "gulp lint",
"format": "gulp format"
}
}