-
Notifications
You must be signed in to change notification settings - Fork 208
/
package.json
66 lines (66 loc) · 1.88 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
64
65
66
{
"name": "nomnoml",
"version": "1.6.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": [
"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"
},
"devDependencies": {
"@rollup/plugin-commonjs": "^25.0.7",
"@rollup/plugin-node-resolve": "^15.2.3",
"@rollup/plugin-typescript": "^11.1.6",
"@rollup/plugin-terser": "0.4.4",
"@types/node": "^20.11.30",
"@types/react": "^18.2.73",
"@types/react-dom": "^18.2.22",
"file-saver": "^2.0.5",
"jison": "^0.4.18",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"rollup": "^4.13.1",
"rollup-plugin-git-version": "^0.3.1",
"rollup-plugin-ignore": "^1.0.10",
"tslib": "^2.6.2",
"typescript": "^5.4.3"
},
"scripts": {
"prepare": "npm run webapp",
"build": "npm run lib && npm run webapp && npm run test",
"webapp": "rollup --bundleConfigAsCjs -c webapp/rollup.config.js",
"lib": "rollup --bundleConfigAsCjs -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"
}
}