-
Notifications
You must be signed in to change notification settings - Fork 35
/
package.json
69 lines (69 loc) · 1.66 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
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
{
"name": "metasync",
"version": "0.3.33",
"author": "Timur Shemsedinov <[email protected]>",
"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 -c \"**/*.js\" \"**/*.json\" \"**/*.md\" \".*rc\"",
"doc": "metadoc",
"fmt": "prettier --write \"**/*.js\" \"**/*.json\" \"**/*.md\" \".*rc\"",
"build": "babel metasync.js -d dist && babel lib -d dist/lib",
"prepublish": "npm run -s build"
},
"engines": {
"node": ">=14.0.0"
},
"dependencies": {
"@metarhia/common": "^2.2.1"
},
"devDependencies": {
"@babel/cli": "^7.22.9",
"@babel/core": "^7.22.9",
"@babel/preset-env": "^7.22.9",
"@metarhia/doc": "^0.7.0",
"eslint": "^8.44.0",
"eslint-config-metarhia": "^8.2.0",
"eslint-config-prettier": "^8.8.0",
"eslint-plugin-import": "^2.27.5",
"eslint-plugin-prettier": "^5.0.0-alpha.2",
"metatests": "^0.8.2",
"prettier": "^3.0.0"
}
}