forked from skanaar/nomnoml
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
49 lines (49 loc) · 1.38 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
{
"name": "nomnoml",
"version": "0.7.2",
"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-file.js",
"dist/nomnoml-cli.js"
],
"dependencies": {
"dagre": "0.8.5"
},
"devDependencies": {
"@types/node": "^14.0.1",
"jison": "0.4.18",
"typescript": "^3.8.3",
"uglify-js": "^3.9.3"
},
"scripts": {
"prepare": "npm run build && npm run test && npm run test_cli && npm run webapp && npm run minify",
"minify": "uglifyjs dist/nomnoml.web.js -o dist/nomnoml.web.js && uglifyjs dist/webapp.js -o dist/webapp.js",
"build": "npm run compile && npm run bundle",
"compile": "tsc --build src/tsconfig.json",
"bundle": "node build/build.js",
"test": "node test/test.js",
"test_cli": "node dist/nomnoml-cli.js test/import-test.nomnoml test/output.node-test.svg",
"webapp": "node build/build-icons.js && tsc --build webapp/tsconfig.json"
},
"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"
}
}