-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
56 lines (56 loc) · 1.42 KB
/
package.json
File metadata and controls
56 lines (56 loc) · 1.42 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
{
"name": "@typeservice/core",
"version": "1.0.5",
"description": "A lightweight and pure service startup architecture.",
"main": "dist/index.js",
"source": "dist",
"repository": {
"type": "git",
"url": "git+https://github.com/typeservice/core.git"
},
"scripts": {
"dev:process": "ts-node test/process",
"dev:singleton": "ts-node test/singleton/index",
"dev:cluster": "ts-node test/cluster/index",
"build": "rm -rf dist/ && tsc -d",
"test": "jest --detectOpenHandles",
"test:coverage": "rm -rf coverage/ && nyc jest --detectOpenHandles --forceExit --coverage",
"test:report": "nyc report --reporter=text-lcov > coverage.lcov && codecov"
},
"files": [
"dist"
],
"keywords": [
"typeservice",
"worker",
"agent",
"messager",
"cluster",
"micro",
"service"
],
"author": "cevio",
"license": "MIT",
"bugs": {
"url": "https://github.com/typeservice/core/issues"
},
"homepage": "https://github.com/typeservice/core#readme",
"devDependencies": {
"@types/jest": "^24.0.18",
"@types/minimist": "^1.2.0",
"@types/node": "^12.7.4",
"axios": "^0.19.0",
"codecov": "^3.5.0",
"jest": "^24.9.0",
"nyc": "^14.1.1",
"ts-jest": "^24.1.0",
"ts-node": "^8.3.0",
"typescript": "^3.6.2"
},
"dependencies": {
"@types/uuid": "^3.4.5",
"minimist": "^1.2.0",
"reflect-metadata": "^0.1.13",
"uuid": "^3.3.3"
}
}