forked from bramp/js-sequence-diagrams
-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
40 lines (34 loc) · 849 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
35
36
37
38
39
40
{
"name": "node-sequence-diagram",
"author": "Sharvil Nanavati <[email protected]>",
"description": "Node.js library to generate sequence diagrams",
"version": "1.0.1",
"homepage": "https://github.com/sharvil/node-sequence-diagram",
"main": "src/diagram.js",
"repository": {
"type": "git",
"url": "https://github.com/sharvil/node-sequence-diagram.git"
},
"bugs": {
"url": "https://github.com/sharvil/node-sequence-diagram/issues"
},
"licenses": [
{
"type": "BSD-2-Clause",
"url": "https://github.com/sharvil/node-sequence-diagram/blob/master/LICENSE"
}
],
"keywords": [
"message",
"sequence",
"chart",
"diagram",
"msc"
],
"devDependencies": {
"jison": "0.4.x"
},
"scripts": {
"prepublish": "jison src/grammar.jison -o src/grammar.js"
}
}