-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
59 lines (59 loc) · 1.41 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
{
"name": "injecute",
"version": "0.14.0",
"description": "Lightweight extendable typesafe dependency injection container",
"repository": {
"url": "git+https://github.com/Masyaka/injecute.git"
},
"scripts": {
"clean": "rm -rf ./lib",
"watch": "tsc --watch",
"build": "npm run clean && npm run build:esm && npm run build:cjs",
"build:esm": "tsc -p ./tsconfig.esm.json && mv ./lib/esm/index.js ./lib/esm/index.mjs",
"build:cjs": "tsc -p ./tsconfig.cjs.json",
"prepack": "npm run build",
"format": "npx prettier ./src -w",
"test": "mocha -r ts-node/register --exit './tests/**/*.test.ts'"
},
"types": "./lib/cjs/types/index.d.ts",
"main": "./lib/cjs/index.js",
"files": [
"lib/**/*"
],
"exports": {
".": {
"import": {
"types": "./lib/esm/types/index.d.ts",
"default": "./lib/esm/index.mjs"
},
"require": {
"types": "./lib/cjs/types/index.d.ts",
"default": "./lib/cjs/index.js"
}
}
},
"keywords": [
"di",
"dic",
"dependency",
"injection",
"container",
"typesafe",
"inversion",
"of",
"control",
"functional",
"fp"
],
"author": "Masyaka",
"license": "MIT",
"devDependencies": {
"@types/chai": "^4.3.4",
"@types/mocha": "^10.0.1",
"chai": "^4.3.7",
"mocha": "^10.2.0",
"prettier": "^2.8.8",
"ts-node": "^10.9.1",
"typescript": "^5.3.3"
}
}