-
-
Notifications
You must be signed in to change notification settings - Fork 17
Expand file tree
/
Copy pathpackage.json
More file actions
58 lines (58 loc) · 1.46 KB
/
package.json
File metadata and controls
58 lines (58 loc) · 1.46 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
{
"name": "didi",
"version": "11.0.0",
"description": "Dependency Injection for JavaScript",
"type": "module",
"main": "./dist/index.js",
"exports": {
".": "./dist/index.js",
"./package.json": "./package.json"
},
"types": "./dist/index.d.ts",
"scripts": {
"all": "run-s lint bundle test check-types integration-test",
"bundle": "cross-env NODE_ENV=production rollup -c --bundleConfigAsCjs",
"lint": "eslint .",
"check-types": "tsc --pretty --noEmit",
"test": "c8 --reporter=lcov mocha test/*.spec.js",
"integration-test": "(cd test/integration && mocha --import=tsx *.spec.{cjs,ts})",
"prepare": "run-s bundle"
},
"repository": {
"type": "git",
"url": "git://github.com/nikku/didi.git"
},
"keywords": [
"di",
"inversion of control",
"dependency",
"injection",
"injector"
],
"engines": {
"node": ">= 20.12"
},
"devDependencies": {
"@types/chai": "^5.2.3",
"@types/mocha": "^10.0.10",
"@types/node": "^24.10.3",
"@web/rollup-plugin-copy": "^0.5.1",
"c8": "^11.0.0",
"chai": "^6.2.2",
"cross-env": "^10.0.0",
"eslint": "^9.39.3",
"eslint-plugin-bpmn-io": "^2.2.0",
"mocha": "^11.7.5",
"npm-run-all2": "^8.0.4",
"rollup": "^4.59.0",
"tsx": "^4.21.0",
"typescript": "^5.9.3",
"typescript-eslint": "^8.56.1"
},
"author": "Nico Rehwaldt <https://github.com/nikku>",
"license": "MIT",
"sideEffects": false,
"files": [
"dist"
]
}