-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
75 lines (75 loc) · 2.46 KB
/
Copy pathpackage.json
File metadata and controls
75 lines (75 loc) · 2.46 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
65
66
67
68
69
70
71
72
73
74
75
{
"name": "nanolith",
"version": "0.4.5",
"description": "Multi-threading in no time with seamless TypeScript support.",
"main": "./build/index.js",
"exports": "./build/index.js",
"type": "module",
"scripts": {
"bump": "ts-node-esm -T scripts/bump.ts",
"lint": "npx eslint \"src/**\"",
"minify": "ts-node-esm -T scripts/minify.ts",
"build:clean": "npm run lint && tsc && tsc-alias && echo \"build succeeded\"",
"build": "npm run lint && tsc && tsc-alias && npm run minify && echo \"build succeeded\"",
"test": "npm run build && echo \"running tests\" && NODE_OPTIONS=--experimental-vm-modules jest --runInBand",
"test:clean": "npm run build:clean && echo \"running tests\" && NODE_OPTIONS=--experimental-vm-modules jest --runInBand",
"play": "npm run build && echo \"running playground\" && node ./build/__playground__/index.js",
"publish:latest": "npm run bump && ts-node-esm -T scripts/publish.ts latest",
"publish:next": "ts-node-esm -T scripts/publish.ts next"
},
"repository": {
"type": "git",
"url": "https://github.com/mstephen19/nanolith"
},
"homepage": "https://github.com/mstephen19/nanolith#readme",
"bugs": {
"url": "https://github.com/mstephen19/nanolith/issues"
},
"keywords": [
"nanoservices",
"nanoservice",
"microservice",
"microservices",
"thread",
"threads",
"threadz",
"multithreading",
"thread pool",
"child process",
"workers",
"worker",
"worker threads",
"piscina",
"pool",
"threading",
"concurrent",
"concurrency",
"parallel",
"performance",
"scalability",
"async",
"tasks"
],
"author": "Matt Stephens",
"license": "MIT",
"devDependencies": {
"@types/jest": "^29.1.1",
"@types/minify": "^9.1.0",
"@types/node": "^18.7.23",
"@typescript-eslint/eslint-plugin": "^5.39.0",
"@typescript-eslint/parser": "^5.39.0",
"axios": "^1.2.2",
"eslint": "^8.24.0",
"jest": "^29.1.2",
"jsonminify": "^0.4.2",
"minify": "^9.1.0",
"module-alias": "^2.2.2",
"ts-node": "^10.9.1",
"tsc-alias": "^1.8.2",
"tsconfig-paths": "^4.1.1",
"typescript": "^4.9.5"
},
"dependencies": {
"tiny-typed-emitter": "^2.1.0"
}
}