-
Notifications
You must be signed in to change notification settings - Fork 44
/
package.json
148 lines (148 loc) · 3.4 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
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
{
"name": "arkit",
"version": "1.6.4",
"description": "Visualises JavaScript, TypeScript and Flow codebases as meaningful and committable architecture diagrams",
"main": "./dist/arkit.js",
"types": "./dist/arkit.d.ts",
"scripts": {
"architecture": "./index.js",
"prettier": "prettier --write \"{src,test}/*.ts\"",
"compile": "tsc --project .",
"build-schema": "typescript-json-schema src/schema.ts ConfigSchema --required true --id 'https://arkit.pro/schema.json' -o schema.json",
"build": "npm run prettier && npm run compile && npm run build-schema",
"lint": "eslint --ext .ts .",
"jest": "jest --coverage",
"test": "npm run lint && npm run jest",
"prepack": "npm run build && npm run test"
},
"arkit": {
"$schema": "https://arkit.pro/schema.json",
"output": [
{
"path": [
"dist/arkit.svg",
"dist/arkit.png"
]
}
]
},
"engines": {
"node": ">= 8.11.0"
},
"bin": {
"arkit": "index.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/dyatko/arkit.git"
},
"author": "Marat Dyatko <i@marat.by>",
"license": "MIT",
"bugs": {
"url": "https://github.com/dyatko/arkit/issues"
},
"homepage": "https://arkit.pro",
"devDependencies": {
"@types/jest": "29.5.14",
"@types/node": "22.10.2",
"@types/pino": "7.0.5",
"@types/progress": "2.0.7",
"@types/resolve": "1.20.6",
"@types/yargs": "17.0.33",
"@typescript-eslint/eslint-plugin": "8.18.1",
"@typescript-eslint/parser": "8.18.1",
"eslint": "9.17.0",
"eslint-config-prettier": "9.1.0",
"eslint-plugin-import": "2.31.0",
"eslint-plugin-n": "17.15.1",
"eslint-plugin-prettier": "5.2.1",
"jest": "29.7.0",
"prettier": "3.4.2",
"ts-jest": "29.2.5",
"tslint": "6.1.3",
"typescript": "5.7.2",
"typescript-json-schema": "0.65.1",
"worldstar": "1.2.3"
},
"dependencies": {
"nanomatch": "^1.2.13",
"pino": "^9.0.0",
"pino-pretty": "^13.0.0",
"progress": "^2.0.3",
"resolve": "^1.20.0",
"ts-morph": "^24.0.0",
"tsconfig-paths": "^4.0.0",
"yargs": "^17.0.0"
},
"jest": {
"preset": "ts-jest",
"roots": [
"<rootDir>/src",
"<rootDir>/test"
],
"testRegex": ".*\\.test\\.tsx?$",
"testEnvironment": "node",
"moduleFileExtensions": [
"json",
"js",
"ts",
"node"
],
"collectCoverageFrom": [
"src/*.ts"
],
"testPathIgnorePatterns": [
"<rootDir>/test/angular2_es2015/",
"<rootDir>/test/react-dom/",
"<rootDir>/test/express/",
"<rootDir>/node_modules/",
"<rootDir>/dist/"
],
"verbose": true
},
"eslintIgnore": [
"node_modules/*",
"test/*",
"dist/*"
],
"eslintConfig": {
"extends": "prettier",
"parser": "@typescript-eslint/parser",
"parserOptions": {
"ecmaVersion": 6,
"sourceType": "module",
"project": "./tsconfig.json"
},
"plugins": [
"prettier",
"@typescript-eslint"
],
"env": {
"es6": true,
"node": true,
"browser": false
}
},
"renovate": {
"extends": [
"config:base",
":automergeAll"
]
},
"keywords": [
"architecture",
"cli",
"codebase",
"component",
"diagram",
"flow",
"generate",
"javascript",
"js",
"plantuml",
"ts",
"typescript",
"uml",
"visualisation"
]
}