-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
75 lines (75 loc) · 1.94 KB
/
package.json
File metadata and controls
75 lines (75 loc) · 1.94 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
{
"name": "@alt-javascript/cdi",
"version": "3.0.7",
"description": "Contexts and Dependency Injection for JavaScript",
"author": "Craig Parravicini",
"contributors": [
"Claude (Anthropic)",
"Spring Framework (VMware/Broadcom) — design inspiration and pattern source"
],
"keywords": [
"contexts",
"dependency",
"injection",
"cdi"
],
"publishConfig": {
"registry": "https://registry.npmjs.org/",
"access": "public"
},
"main": "index.js",
"type": "module",
"exports": {
".": {
"default": "./index.js"
},
"./context/index.js": "./context/index.js"
},
"files": [
"*.js",
"context/",
"events/",
"dist/"
],
"scripts": {
"build": "rollup -c rollup.config.esm.js",
"prepublishOnly": "npm run build",
"lint": "npx eslint \"./*.js\" \"./test/**/*.js\" --fix",
"test": "npm run test:unit",
"test:unit": "npm run test:tdd",
"test:tdd": "mocha --require test/fixtures/index.js",
"coverage": "c8 --reporter=json-summary --reporter=text-summary --reporter=lcov npm run test"
},
"license": "MIT",
"dependencies": {
"@alt-javascript/common": "3.0.7",
"@alt-javascript/config": "3.0.7",
"@alt-javascript/logger": "3.0.7"
},
"devDependencies": {
"@alt-javascript/boot": "3.0.7",
"c8": "^7.11.0",
"chai": "^4.3.4",
"chai-as-promised": "^7.1.1",
"config": "^4.4.1",
"eslint": "^7.30.0",
"eslint-config-airbnb-base": "^14.2.1",
"eslint-plugin-import": "^2.23.4",
"mocha": "^11.7.5",
"rollup": "^4.59.0",
"rollup-plugin-esm-import-to-url": "^2.1.0",
"uuid": "^8.3.2"
},
"repository": {
"type": "git",
"url": "git+https://github.com/alt-javascript/boot.git",
"directory": "packages/cdi"
},
"homepage": "https://github.com/alt-javascript/boot/tree/main/packages/cdi#readme",
"bugs": {
"url": "https://github.com/alt-javascript/boot/issues"
},
"engines": {
"node": ">=20"
}
}