-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
130 lines (130 loc) · 4.18 KB
/
package.json
File metadata and controls
130 lines (130 loc) · 4.18 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
128
129
130
{
"name": "lula2",
"version": "0.0.0-development",
"description": "A tool for managing compliance as code in your GitHub repositories.",
"bin": {
"lula2": "./dist/lula2"
},
"main": "dist/index.js",
"types": "dist/index.d.ts",
"type": "module",
"engines": {
"node": ">=22.20.0"
},
"repository": {
"type": "git",
"url": "git+https://github.com/defenseunicorns/lula.git"
},
"keywords": [
"compliance",
"devops",
"devsecops"
],
"author": "Defense Unicorns",
"license": "Apache-2.0",
"bugs": {
"url": "https://github.com/defenseunicorns/lula/issues"
},
"homepage": "https://github.com/defenseunicorns/lula#readme",
"files": [
"/src",
"/dist",
"!src/**/*.test.ts",
"!dist/**/*.test.js*",
"!dist/**/*.test.d.ts*"
],
"scripts": {
"dev": "vite dev --port 5173",
"dev:api": "tsx --watch index.ts --debug ui --port 3000 --no-open-browser",
"dev:full": "concurrently \"npm run dev:api\" \"npm run dev\"",
"build": "npm run build:svelte && npm run build:cli && npm run postbuild:cli",
"build:svelte": "vite build",
"build:cli": "esbuild index.ts cli/**/*.ts --bundle --platform=node --target=node22 --format=esm --outdir=dist --external:express --external:commander --external:js-yaml --external:yaml --external:isomorphic-git --external:glob --external:open --external:ws --external:cors --external:multer --external:@octokit/rest --external:undici --external:xlsx-republish --external:csv-parse",
"postbuild:cli": "cp cli-wrapper.mjs dist/lula2 && chmod +x dist/lula2",
"preview": "vite preview",
"prepare": "svelte-kit sync || echo ''",
"check": "svelte-kit sync && svelte-check --tsconfig ./tsconfig.json && tsc --noEmit",
"check:watch": "svelte-kit sync && svelte-check --tsconfig ./tsconfig.json --watch",
"format": "prettier --write 'src/**/*.{ts,js,svelte}' 'cli/**/*.ts' 'index.ts' 'tests/**/*.ts'",
"format:check": "prettier --check 'src/**/*.{ts,js,svelte}' 'cli/**/*.ts' 'index.ts' 'tests/**/*.ts'",
"lint": "prettier --check 'src/**/*.{ts,js,svelte}' 'cli/**/*.ts' 'index.ts' 'tests/**/*.ts' && eslint src cli",
"semantic-release": "semantic-release",
"test": "npm run test:unit -- --run --coverage",
"test:integration": "vitest --config integration/vitest.config.integration.ts",
"test:unit": "vitest"
},
"dependencies": {
"@octokit/rest": "22.0.1",
"@types/ws": "8.18.1",
"commander": "14.0.3",
"cors": "2.8.6",
"csv-parse": "6.1.0",
"express": "5.2.1",
"express-rate-limit": "8.2.1",
"flowbite": "4.0.1",
"glob": "13.0.4",
"isomorphic-git": "1.37.1",
"js-yaml": "4.1.1",
"multer": "2.0.2",
"open": "11.0.0",
"undici": "7.22.0",
"ws": "8.19.0",
"xlsx-republish": "0.20.3",
"yaml": "2.8.2"
},
"devDependencies": {
"@commitlint/cli": "^20.0.0",
"@commitlint/config-conventional": "^20.0.0",
"@defenseunicorns/eslint-config": "^1.1.2",
"@eslint/compat": "^2.0.0",
"@eslint/eslintrc": "^3.3.1",
"@eslint/js": "^9.39.2",
"@playwright/test": "^1.55.0",
"@sveltejs/adapter-static": "^3.0.9",
"@sveltejs/kit": "^2.37.1",
"@sveltejs/vite-plugin-svelte": "^6.1.4",
"@tailwindcss/vite": "^4.1.13",
"@types/cors": "^2.8.19",
"@types/express": "^5.0.3",
"@types/js-yaml": "^4.0.9",
"@types/jsdom": "^27.0.0",
"@types/multer": "^2.0.0",
"@types/node": "^25.0.0",
"@typescript-eslint/eslint-plugin": "^8.42.0",
"@typescript-eslint/parser": "^8.42.0",
"@vitest/browser": "^4.0.1",
"@vitest/coverage-v8": "^4.0.1",
"carbon-icons-svelte": "^13.5.0",
"carbon-preprocess-svelte": "^0.11.11",
"concurrently": "^9.2.1",
"esbuild": "^0.27.0",
"eslint": "^9.39.2",
"eslint-config-prettier": "^10.1.8",
"eslint-plugin-jsdoc": "^62.0.0",
"eslint-plugin-svelte": "^3.12.2",
"globals": "^17.0.0",
"husky": "^9.1.7",
"jsdom": "^28.0.0",
"playwright": "^1.55.0",
"prettier": "3.8.1",
"prettier-plugin-svelte": "^3.4.0",
"semantic-release": "^25.0.1",
"shellcheck": "^4.1.0",
"svelte": "^5.38.7",
"svelte-check": "^4.3.1",
"tailwind-merge": "^3.3.1",
"tailwindcss": "^4.1.13",
"tsx": "^4.20.5",
"typescript": "5.9.3",
"typescript-eslint": "^8.42.0",
"vite": "^7.1.4",
"vitest": "^4.0.1",
"vitest-browser-svelte": "^2.0.0"
},
"release": {
"branches": [
"main",
"next"
]
}
}