-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
52 lines (52 loc) · 1.73 KB
/
package.json
File metadata and controls
52 lines (52 loc) · 1.73 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
{
"name": "@alt-javascript/altjs",
"version": "3.0.3",
"private": true,
"type": "module",
"workspaces": [
"packages/*"
],
"scripts": {
"build": "npm run build --workspaces --if-present",
"build:common": "npm run build -w packages/common",
"build:config": "npm run build -w packages/config",
"build:logger": "npm run build -w packages/logger",
"build:cdi": "npm run build -w packages/cdi",
"build:boot": "npm run build -w packages/boot",
"test": "npm test --workspaces",
"test:boot": "npm test -w packages/boot",
"test:cdi": "npm test -w packages/cdi",
"test:config": "npm test -w packages/config",
"test:logger": "npm test -w packages/logger",
"test:jsdbc-template": "npm test -w packages/jsdbc-template",
"test:express": "npm test -w packages/boot-express",
"test:fastify": "npm test -w packages/boot-fastify",
"test:lambda": "npm test -w packages/boot-lambda",
"test:koa": "npm test -w packages/boot-koa",
"test:hono": "npm test -w packages/boot-hono",
"test:cloudflare": "npm test -w packages/boot-cloudflare-worker",
"test:azure": "npm test -w packages/boot-azure-function",
"lint": "npm run lint --workspaces --if-present"
},
"devDependencies": {
"rollup": "^4.59.0",
"rollup-plugin-esm-import-to-url": "^2.1.0"
},
"description": "alt-javascript framework monorepo \u2014 IoC, DI, config, logging for pure JavaScript ESM",
"author": "Craig Parravicini",
"contributors": [
"Claude (Anthropic)"
],
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/.git"
},
"homepage": "https://github.com/#readme",
"bugs": {
"url": "https://github.com//issues"
},
"engines": {
"node": ">=18"
}
}