-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
61 lines (61 loc) · 1.21 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
{
"name": "@marcusrettig/box",
"version": "0.2.7",
"description": "Minimalistic type-safe service container",
"keywords": [
"dependency injection",
"service container",
"typescript",
"type-safe",
"minimalistic",
"DI",
"DI container"
],
"author": "Marcus Rettig <[email protected]>",
"repository": {
"type": "git",
"url": "https://github.com/marcusrettig/box"
},
"license": "MIT",
"type": "module",
"exports": {
"types": "./dist/box.d.ts",
"default": "./dist/box.js"
},
"engines": {
"node": ">=16"
},
"scripts": {
"test": "xo && tsc --noEmit && c8 ava",
"watch": "ava --watch",
"build": "del-cli dist && tsc -p tsconfig.build.json"
},
"files": [
"dist/"
],
"sideEffects": false,
"ava": {
"extensions": {
"ts": "module"
},
"nodeArguments": [
"--loader=tsx/esm",
"--no-warnings=ExperimentalWarning"
],
"files": [
"test/**/*.test.ts"
]
},
"xo": {
"space": 2
},
"devDependencies": {
"@tsconfig/strictest": "^2.0.2",
"ava": "^5.3.1",
"c8": "^8.0.1",
"del-cli": "^5.1.0",
"tsx": "^3.13.0",
"typescript": "^5.2.2",
"xo": "^0.56.0"
}
}