-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
85 lines (85 loc) · 2.65 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
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
{
"name": "@funktechno/little-mermaid-2-the-sql",
"version": "0.1.1",
"description": "",
"main": "./lib/index.js",
"types": "./lib/index.d.ts",
"engines": {
"node": ">=16.x"
},
"bin": {
"littleMermaid2SQL": "./lib/src/index.js"
},
"scripts": {
"start": "node index.mjs",
"littleMermaid2SQL": "npm run build && npm i --force -g && littleMermaid2SQL",
"cli:help": "npm run build && npm i --force -g && littleMermaid2SQL --help",
"cli:test": "npm run build && npm i --force -g && littleMermaid2SQL",
"cli:remove": "npm uninstall -g",
"test": "jest -c ./jest.config.ts --forceExit --verbose -i --no-cache --detectOpenHandles",
"test:coverage": "jest --forceExit --coverage --verbose --detectOpenHandles",
"test:watch": "jest --watchAll --detectOpenHandles",
"lint": "tsc --noEmit && eslint \"{src,client}/**/*.{js,ts}\"",
"lint:fix": "tsc --noEmit && eslint \"{src,client}/**/*.{js,ts}\" --fix",
"create": "npm run build && npm run cli:test",
"build": "tsc && npm run build:types",
"build:types": "tsc -p tsconfig-types.json",
"build:help": "tsc --help",
"build:client": "npm run mkdir:dist && browserify src/index.ts -p [ tsify --noImplicitAny ] > dist/littleMermaid.js",
"mkdir:dist": "node ./build/createDistFolder.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Software-Developers-IRL/Little-Mermaid-2-The-SQL.git"
},
"keywords": [
"typescript",
"sql",
"mermaidjs",
"jison",
"sql-generator",
"diagram",
"UML",
"plugins",
"erdiagram",
"schemacrawler",
"sql-ddl"
],
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/Software-Developers-IRL/Little-Mermaid-2-The-SQL/issues"
},
"homepage": "https://github.com/Software-Developers-IRL/Little-Mermaid-2-The-SQL#readme",
"devDependencies": {
"@types/clear": "^0.1.2",
"@types/figlet": "^1.5.5",
"@types/jest": "^29.0.3",
"@types/lodash": "^4.14.185",
"@types/mermaid": "^9.1.0",
"@types/node": "^20.2.3",
"@typescript-eslint/eslint-plugin": "^6.0.0",
"@typescript-eslint/parser": "^6.0.0",
"browserify": "^17.0.0",
"dompurify": "3.0.6",
"eslint": "^8.25.0",
"jest": "^29.0.3",
"jest-junit": "^16.0.0",
"jest-serial-runner": "^1.1.0",
"ts-jest": "^29.0.1",
"ts-node": "^10.9.1",
"typescript": "^5.0.2"
},
"dependencies": {
"@types/dompurify": "^3.0.0",
"chalk": "^5.1.2",
"clear": "^0.1.0",
"commander": "^11.0.0",
"figlet": "^1.5.0",
"jison": "^0.4.18",
"lodash": "^4.17.21",
"mermaid": "^10.0.0",
"moment-mini": "^2.24.0",
"path": "^0.12.7"
}
}