-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
51 lines (51 loc) · 1.15 KB
/
package.json
File metadata and controls
51 lines (51 loc) · 1.15 KB
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
{
"name": "ryle",
"version": "0.1.1",
"description": "A full hierarchical Finite State Machine (fsm) library built on promises.",
"main": "index.js",
"scripts": {
"test": "mocha --reporter spec",
"coverage": "nyc mocha test/**/*.js",
"uxf": "umlet -action=convert -format=png -filename=examples/*.uxf"
},
"nyc": {
"reporter": [
"text",
"html"
]
},
"repository": {
"type": "git",
"url": "git://github.com/zakalwe314/ryle.git"
},
"keywords": [
"fsm",
"fsa",
"finite",
"state",
"machine",
"hierarchical",
"uml"
],
"author": "Euan Smith <euan1971@yahoo.co.uk> (https://github.com/zakalwe314)",
"license": "MIT",
"bugs": {
"url": "https://github.com/zakalwe314/ryle/issues"
},
"homepage": "https://github.com/zakalwe314/ryle#readme",
"devDependencies": {
"chai": "^3.5.0",
"chai-as-promised": "^6.0.0",
"chai-iterator": "^1.1.1",
"express": "^4.14.0",
"http-as-promised": "^1.1.0",
"mocha": "^3.2.0",
"nyc": "^10.1.2",
"ord": "^0.1.1"
},
"dependencies": {
"bluebird": "^3.4.7",
"mini-signals": "^1.1.1",
"prop-d": "^1.3.1"
}
}