-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
51 lines (51 loc) · 1.19 KB
/
package.json
File metadata and controls
51 lines (51 loc) · 1.19 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
{
"name": "@ts-framework/framework",
"version": "dev",
"description": "",
"author": "Bailey Herbert <git@bailey.sh> (https://bailey.sh)",
"repository": "github:ts-framework/framework",
"bugs": "https://github.com/ts-framework/framework/issues",
"license": "MIT",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"files": [
"dist/**/*"
],
"keywords": [],
"scripts": {
"build": "rimraf dist && tsc",
"dev": "rimraf dist && tsc -w",
"test": "jest"
},
"engines": {
"node": ">=16.0.0"
},
"dependencies": {
"@baileyherbert/container": "^2.0.3",
"@baileyherbert/dependency-graph": "^1.0.0",
"@baileyherbert/env": "^2.0.1",
"@baileyherbert/events": "^1.0.1",
"@baileyherbert/logging": "^2.1.0",
"@baileyherbert/nested-collections": "^1.3.0",
"@baileyherbert/promises": "^1.0.0",
"@baileyherbert/reflection": "^1.2.4",
"@baileyherbert/types": "^1.0.1"
},
"devDependencies": {
"@types/jest": "^27.4.1",
"@types/node": "^16.11.7",
"jest": "^27.5.1",
"rimraf": "^3.0.2",
"ts-jest": "^27.1.3",
"typescript": "^4.6.2"
},
"jest": {
"preset": "ts-jest",
"testEnvironment": "node",
"globals": {
"ts-jest": {
"tsconfig": "tests/tsconfig.json"
}
}
}
}