-
Notifications
You must be signed in to change notification settings - Fork 15
Expand file tree
/
Copy pathpackage.json
More file actions
25 lines (25 loc) · 740 Bytes
/
package.json
File metadata and controls
25 lines (25 loc) · 740 Bytes
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
{
"name": "automata",
"version": "4.0.0",
"main": "./lib/Registry.js",
"keywords": [
"DFA",
"state machine",
"automata"
],
"author": "hyperandroid <[email protected]> (http://medium.com/@hyperandroid)",
"description": "Automata is a Deterministic Finite State Machine automata framework featuring: a JSON based automata definition, timed transitions, sub-states, guards, FSM registry, etc.",
"repository": {
"type": "git",
"url": "git://github.com/hyperandroid/Automata.git"
},
"dependencies": {},
"devDependencies": {},
"optionalDependencies": {},
"engines": {
"node": "*"
},
"typings": "./lib/*.d.ts",
"license": "MIT",
"homepage": "http://github.com/hyperandroid/automata"
}