-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
34 lines (34 loc) · 864 Bytes
/
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
{
"name": "fsm2dot",
"version": "2.2.2",
"description": "Convert javascript state machine to DOT",
"main": "lib/graph.js",
"repository": {
"type": "git",
"url": "https://github.com/vstirbu/fsm2dot.git"
},
"author": "Vlad Stirbu",
"license": "MIT",
"bugs": {
"url": "https://github.com/vstirbu/fsm2dot/issues"
},
"homepage": "https://github.com/vstirbu/fsm2dot",
"dependencies": {
"debug": "^2.2.0",
"escodegen": "^1.9.0",
"esprima": "^4.0.0",
"estraverse": "^4.2.0",
"lodash": "^4.17.2",
"pug": "^2.0.0-rc.4",
"yargs": "^12.0.2"
},
"preferGlobal": true,
"bin": {
"fsm2dot": "index.js"
},
"scripts": {
"test": "mocha test/test.js",
"test-cov": "istanbul cover _mocha -- -R spec --check-leaks",
"test-travis": "istanbul cover _mocha --report lcovonly -- --reporter dot"
}
}