-
Notifications
You must be signed in to change notification settings - Fork 39
/
package.json
62 lines (62 loc) · 1.27 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
{
"name": "state.js",
"version": "5.11.1",
"author": "David Mesquita-Morris",
"contributors": [
"David Mesquita-Morris"
],
"description": "Hierarchical finite state machine",
"main": "./lib/node/state",
"typings": "./lib/node/state.d.ts",
"repository": {
"type": "git",
"url": "https://github.com/steelbreeze/state.js"
},
"scripts": {
"build": "tsc -p .",
"test": "nyc --reporter=lcov mocha",
"coverage": "CODECLIMATE_REPO_TOKEN=111df745fd4988fccdb084cd48dfb18cd152e6fb6476c473e911b1fbdfa3de76 codeclimate-test-reporter < ./coverage/lcov.info"
},
"devDependencies": {
"typescript": "latest",
"nyc": "latest",
"mocha": "latest",
"codeclimate-test-reporter": "latest"
},
"keywords": [
"state machine",
"finite state machine",
"uml",
"finite",
"state",
"machine",
"region",
"orthogonal",
"hierarchical",
"pseudo",
"final",
"initial",
"deep",
"shallow",
"history",
"fsm",
"junction",
"choice",
"transition",
"completion"
],
"bugs": {
"url": "https://github.com/steelbreeze/state.js/issues"
},
"dependencies": {},
"licenses": [
{
"type": "MIT",
"url": "https://github.com/steelbreeze/state.js/blob/master/GPL.md"
},
{
"type": "GPL",
"url": "https://github.com/steelbreeze/state.js/blob/master/MIT.md"
}
]
}