-
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
127 lines (127 loc) · 3.67 KB
/
package.json
File metadata and controls
127 lines (127 loc) · 3.67 KB
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
{
"name": "archunit-ts",
"version": "1.0.0",
"description": "A TypeScript/JavaScript architecture test library to specify and assert architecture rules in a fluent API",
"main": "dist/index.js",
"module": "dist/index.mjs",
"types": "dist/index.d.ts",
"bin": {
"archunit": "./bin/archunit"
},
"exports": {
".": {
"types": "./dist/index.d.ts",
"import": "./dist/index.mjs",
"require": "./dist/index.js"
}
},
"files": [
"dist",
"bin",
"docs",
"README.md",
"LICENSE"
],
"engines": {
"node": ">= 14",
"npm": ">=6"
},
"scripts": {
"build": "tsc && npm run build:esm",
"build:esm": "tsc --module esnext --outDir dist/esm && node scripts/post-build.js",
"build:watch": "tsc --watch",
"clean": "rm -rf dist coverage .nyc_output",
"test": "jest",
"test:watch": "jest --watch",
"test:coverage": "jest --coverage",
"test:ci": "jest --coverage --ci --maxWorkers=2",
"lint": "eslint 'src/**/*.ts' 'test/**/*.ts' --ignore-pattern 'test/temp-*/**'",
"lint:fix": "eslint 'src/**/*.ts' 'test/**/*.ts' --ignore-pattern 'test/temp-*/**' --fix",
"format": "prettier --write \"src/**/*.ts\" \"test/**/*.ts\" \"*.md\"",
"format:check": "prettier --check \"src/**/*.ts\" \"test/**/*.ts\" \"*.md\"",
"typecheck": "tsc --noEmit",
"docs": "typedoc --out docs src/index.ts",
"docs:serve": "npx http-server docs -p 8080",
"prepublishOnly": "npm run clean && npm run build && npm run test",
"prepare": "husky install || true",
"fresh-install": "rm -rf node_modules && npm cache clean --force && npm install",
"security": "npm audit --production --audit-level high",
"security:fix": "npm audit fix",
"outdated": "npm outdated --depth 0",
"validate": "npm run typecheck && npm run lint && npm run test",
"prerelease": "npm run validate && npm run build",
"release": "semantic-release",
"commit": "git-cz"
},
"repository": {
"type": "git",
"url": "https://github.com/manjericao/ArchUnitNode"
},
"bugs": {
"url": "https://github.com/manjericao/ArchUnitNode/issues"
},
"keywords": [
"architecture",
"archunit",
"testing",
"typescript",
"javascript",
"clean-architecture",
"dependency-analysis",
"layered-architecture",
"hexagonal-architecture",
"architecture-testing"
],
"author": "Manjericao Team",
"license": "MIT",
"dependencies": {
"@actions/core": "^1.10.1",
"@actions/github": "^6.0.0",
"@typescript-eslint/parser": "^6.0.0",
"@typescript-eslint/typescript-estree": "^6.0.0",
"chokidar": "^4.0.3",
"glob": "^12.0.0",
"minimatch": "^9.0.3"
},
"devDependencies": {
"@commitlint/cli": "^18.0.0",
"@commitlint/config-conventional": "^18.0.0",
"@semantic-release/changelog": "^6.0.3",
"@semantic-release/git": "^10.0.1",
"@types/chokidar": "^1.7.5",
"@types/glob": "^8.1.0",
"@types/jest": "^29.5.0",
"@types/minimatch": "^5.1.2",
"@types/node": "^20.0.0",
"@typescript-eslint/eslint-plugin": "^6.0.0",
"commitizen": "^4.3.0",
"cz-conventional-changelog": "^3.3.0",
"eslint": "^8.50.0",
"husky": "^8.0.3",
"jest": "^29.5.0",
"lint-staged": "^15.0.0",
"prettier": "^3.0.0",
"semantic-release": "^22.0.0",
"ts-jest": "^29.1.0",
"typedoc": "^0.25.0",
"typescript": "^5.2.0"
},
"lint-staged": {
"*.ts": [
"eslint --fix",
"prettier --write"
],
"*.{json,md}": [
"prettier --write"
]
},
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
},
"publishConfig": {
"access": "public",
"registry": "https://registry.npmjs.org/"
}
}