-
-
Notifications
You must be signed in to change notification settings - Fork 36
Expand file tree
/
Copy pathpackage.json
More file actions
62 lines (62 loc) · 1.4 KB
/
package.json
File metadata and controls
62 lines (62 loc) · 1.4 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
{
"name": "metasync",
"version": "0.3.33",
"author": "Timur Shemsedinov <timur.shemsedinov@gmail.com>",
"description": "Asynchronous Programming Library",
"license": "MIT",
"keywords": [
"metasync",
"callback",
"promise",
"async",
"asyncronous",
"parallel",
"sequential",
"metarhia",
"flow",
"collector",
"errback",
"err-first",
"error-first",
"callback-last",
"throttle",
"impress",
"datacollector",
"keycollector",
"composition"
],
"repository": {
"type": "git",
"url": "https://github.com/metarhia/metasync"
},
"main": "metasync.js",
"browser": {
"metasync.js": "dist/metasync.js"
},
"files": [
"dist/",
"lib/"
],
"readmeFilename": "README.md",
"scripts": {
"test": "npm run lint && metatests test/ && metatests tests/async-iterator.js",
"perf": "tests/load/run.sh",
"lint": "eslint . && prettier --check \"**/*.js\" \"**/*.json\" \"**/*.md\" \"**/*.ts\"",
"fix": "eslint . --fix && prettier --write \"**/*.js\" \"**/*.json\" \"**/*.md\" \"**/*.ts\"",
"types": "tsc -p tsconfig.json"
},
"engines": {
"node": ">=14.0.0"
},
"dependencies": {
"metautil": "^5.3.0"
},
"devDependencies": {
"@types/node": "^25.0.3",
"eslint": "^9.39.2",
"eslint-config-metarhia": "^9.1.5",
"prettier": "^3.7.4",
"metatests": "^0.9.3",
"typescript": "^5.9.3"
}
}