-
Notifications
You must be signed in to change notification settings - Fork 6
Expand file tree
/
Copy pathpackage.json
More file actions
64 lines (64 loc) · 1.62 KB
/
package.json
File metadata and controls
64 lines (64 loc) · 1.62 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
52
53
54
55
56
57
58
59
60
61
62
63
64
{
"name": "microse",
"version": "1.7.1",
"description": "Micro Remote Object Serving Engine",
"main": "dist/index.js",
"scripts": {
"prepublishOnly": "npx tsc && npx webpack",
"pretest": "npx tsc && node test/pretest.js",
"test": "npx mocha -r source-map-support/register test/.build/test",
"posttest": "node test/posttest.js",
"postinstall": "node postinstall.js"
},
"engines": {
"node": ">=14"
},
"repository": {
"type": "git",
"url": "git+https://github.com/microse-rpc/microse-node.git"
},
"keywords": [
"rpc",
"module",
"proxy",
"micro-service",
"auto-load",
"hot-reload"
],
"author": "A-yon Lee <the@ayon.li>",
"license": "MIT",
"bugs": {
"url": "https://github.com/microse-rpc/microse-node/issues"
},
"homepage": "https://github.com/microse-rpc/microse-node#readme",
"dependencies": {
"@ayonli/jsext": "^0.4.2",
"@hyurl/utils": "^0.3.0",
"check-iterable": "^1.1.0",
"chokidar": "^3.5.3",
"js-magic": "^1.3.0",
"lodash": "^4.17.21",
"require-chain": "^2.1.0",
"string-hash": "^1.1.3",
"thenable-generator": "^0.4.3",
"ws": "^7.5.9"
},
"devDependencies": {
"@types/fs-extra": "^8.1.2",
"@types/lodash": "^4.14.168",
"@types/mocha": "^5.2.7",
"@types/node": "^20.6.2",
"@types/string-hash": "^1.1.1",
"@types/ws": "^7.4.7",
"bson": "^4.2.3",
"fron": "^0.2.4",
"fs-extra": "^8.1.0",
"mocha": "^5.2.0",
"source-map-support": "^0.5.21",
"ts-loader": "^8.1.0",
"tslib": "^2.6.2",
"typescript": "^4.9.5",
"webpack": "^5.30.0",
"webpack-cli": "^4.6.0"
}
}