forked from skanaar/nomnoml
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
61 lines (61 loc) · 1.72 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
{
"name": "nomnoml",
"version": "1.3.1",
"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": [
"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": {
"file-saver": "^2.0.2",
"graphre": "^0.1.3"
},
"devDependencies": {
"@rollup/plugin-commonjs": "^16.0.0",
"@rollup/plugin-node-resolve": "^10.0.0",
"@rollup/plugin-typescript": "^6.1.0",
"@types/node": "^14.14.3",
"jison": "^0.4.18",
"rollup": "^2.33.1",
"rollup-plugin-ignore": "^1.0.9",
"rollup-plugin-terser": "^7.0.2",
"tslib": "^2.0.3",
"typescript": "^4.0.3"
},
"scripts": {
"prepare": "npm run webapp",
"build": "npm run lib && npm run webapp && npm run test",
"webapp": "rollup -c webapp/rollup.config.js",
"lib": "node build/build-parser.js && rollup -c src/rollup.config.js && npm test",
"test": "node test/index.js && 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"
}
}