-
-
Notifications
You must be signed in to change notification settings - Fork 17
/
package.json
63 lines (63 loc) · 1.58 KB
/
package.json
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
{
"name": "didi",
"version": "10.2.2",
"description": "Dependency Injection for JavaScript",
"types": "dist/index.d.ts",
"main": "dist/index.cjs",
"module": "dist/index.js",
"exports": {
".": {
"import": "./dist/index.js",
"require": "./dist/index.cjs",
"types": "./dist/index.d.ts"
},
"./package.json": "./package.json"
},
"type": "module",
"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": ">= 16"
},
"devDependencies": {
"@types/chai": "^4.3.20",
"@types/mocha": "^10.0.9",
"@types/node": "^20.16.11",
"@web/rollup-plugin-copy": "^0.5.1",
"c8": "^10.1.2",
"chai": "^4.5.0",
"cross-env": "^7.0.3",
"eslint": "^9.12.0",
"eslint-plugin-bpmn-io": "^2.0.2",
"mocha": "^10.7.3",
"npm-run-all2": "^7.0.0",
"rollup": "^4.24.0",
"tsx": "^4.19.1",
"typescript": "5.5.4",
"typescript-eslint": "^8.8.1"
},
"author": "Nico Rehwaldt <https://github.com/nikku>",
"license": "MIT",
"sideEffects": false,
"files": [
"dist"
]
}