-
Notifications
You must be signed in to change notification settings - Fork 207
/
package.json
66 lines (66 loc) · 1.92 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.7.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": [
"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": "^28.0.1",
"@rollup/plugin-node-resolve": "^15.3.0",
"@rollup/plugin-typescript": "^12.1.1",
"@rollup/plugin-terser": "0.4.4",
"@types/node": "^22.10.1",
"@types/react": "^18.3.12",
"@types/react-dom": "^18.3.1",
"file-saver": "^2.0.5",
"react": "^18.3.1",
"react-dom": "^18.3.1",
"rollup": "^4.28.0",
"rollup-plugin-git-version": "^0.3.1",
"rollup-plugin-ignore": "^1.0.10",
"tslib": "^2.8.1",
"typescript": "^5.7.2"
},
"scripts": {
"prepare": "npm run webapp",
"build": "npm run lib && npm run webapp && npm run test",
"checktypes": "tsc --noEmit -p src && tsc --noEmit -p webapp",
"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"
}
}