-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
41 lines (41 loc) · 1.12 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
{
"name": "@hisorange/kernel",
"version": "2.2.4",
"description": "Async application kernel with context and modular loading support",
"main": "build/index.js",
"repository": "https://github.com/hisorange/kernel",
"author": "Varga Zsolt <[email protected]>",
"license": "GPL-3.0",
"type": "module",
"private": false,
"publishConfig": {
"access": "public"
},
"scripts": {
"prebuild": "rimraf build",
"build": "tsc -p tsconfig.build.json",
"test:types": "tsc --noEmit",
"test": "node --experimental-vm-modules --no-warnings ./node_modules/.bin/jest"
},
"devDependencies": {
"@types/jest": "^29.2.0",
"@types/node": "^20.0.0",
"@types/node-schedule": "^2.1.0",
"jest": "^29.2.2",
"rimraf": "^5.0.0",
"ts-jest": "^29.0.3",
"ts-node": "^10.9.1",
"typescript": "^5.0.0"
},
"dependencies": {
"@loopback/context": "^6.0.0",
"@loopback/metadata": "^6.0.0",
"chalk": "^5.1.2",
"dependency-graph": "^0.11.0",
"eventemitter2": "^6.4.9",
"lodash.debounce": "^4.0.8",
"node-schedule": "^2.1.0",
"p-timeout": "^6.0.0",
"pino": "^8.16.2"
}
}