forked from skanaar/nomnoml
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
63 lines (63 loc) · 1.75 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
63
{
"name": "nomnoml",
"version": "1.6.2",
"description": "The sassy UML renderer that generates diagrams from text",
"homepage": "http://www.nomnoml.com",
"author": "Daniel Kallin <daniel.kallin@gmail.com>",
"license": "MIT",
"keywords": [
"uml"
],
"main": "dist/nomnoml.js",
"files": [
"index.d.ts",
"dist/nomnoml.js",
"dist/nomnoml-cli.js",
"dist/webapp.js",
"index.html",
"nomnoml.css",
"favicon.png",
"img/interaction-tutorial.svg",
"codemirror/solarized.nomnoml.css",
"codemirror/nomnoml.codemirror-mode.js",
"codemirror/codemirror.css",
"codemirror/codemirror-compressed.js"
],
"types": "index.d.ts",
"dependencies": {
"graphre": "^0.1.3",
"nomnoml": "^1.5.3"
},
"devDependencies": {
"@rollup/plugin-commonjs": "^22.0.1",
"@rollup/plugin-node-resolve": "^13.3.0",
"@rollup/plugin-typescript": "^8.3.3",
"@types/node": "^17.0.13",
"file-saver": "^2.0.5",
"jison": "^0.4.18",
"rollup": "^2.77.0",
"rollup-plugin-git-version": "^0.3.1",
"rollup-plugin-ignore": "^1.0.10",
"rollup-plugin-terser": "^7.0.2",
"tslib": "^2.4.0",
"typescript": "^4.7.4"
},
"scripts": {
"prepare": "npm run webapp",
"build": "npm run lib && npm run webapp && npm run test",
"webapp": "rollup -c webapp/rollup.config.js",
"lib": "rollup -c src/rollup.config.js && npm test",
"test": "node --test && npm run test_cli",
"test_cli": "rm -f test/output.svg && node dist/nomnoml-cli.js test/import-test.nomnoml test/output.svg"
},
"repository": {
"type": "git",
"url": "https://github.com/skanaar/nomnoml.git"
},
"bugs": {
"url": "https://github.com/skanaar/nomnoml/issues"
},
"bin": {
"nomnoml": "dist/nomnoml-cli.js"
}
}