forked from skanaar/nomnoml
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
43 lines (43 loc) · 1 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
{
"name": "nomnoml",
"version": "0.5.0",
"description": "The sassy UML renderer that generates diagrams from text",
"homepage": "http://www.nomnoml.com",
"author": "Daniel Kallin <[email protected]>",
"license": "MIT",
"keywords": [
"uml"
],
"main": "dist/nomnoml.js",
"files": [
"dist/nomnoml.js",
"dist/nomnoml-cli.js"
],
"dependencies": {
"dagre": "0.8.4"
},
"devDependencies": {
"jison": "0.4.13",
"jshint": "2.10.2",
"uglify-js": "^3.5.9"
},
"scripts": {
"prepare": "npm run build && npm run test && npm run test_cli",
"build": "node build.js",
"test": "node test/nomnoml.spec.js",
"test_cli": "node dist/nomnoml-cli.js test/import-test.nomnoml test/output.node-test.svg"
},
"directories": {
"test": "test"
},
"repository": {
"type": "git",
"url": "https://github.com/skanaar/nomnoml.git"
},
"bugs": {
"url": "https://github.com/skanaar/nomnoml/issues"
},
"bin": {
"nomnoml": "dist/nomnoml-cli.js"
}
}