-
-
Notifications
You must be signed in to change notification settings - Fork 6
/
package.json
58 lines (58 loc) · 1.32 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
{
"name": "do",
"version": "0.7.0",
"description": "The simplest way to manage asynchronicity",
"license": "MIT",
"contributors": [
"Timur Shemsedinov <timur.shemsedinov@gmail.com>",
"Oleg Slobodskoi <oleg008@gmail.com>",
"Timoshenko Ivan <kerckh@gmail.com>"
],
"repository": {
"type": "git",
"url": "git+https://github.com/metarhia/do.git"
},
"homepage": "https://metarhia.com",
"keywords": [
"metasync",
"callback",
"callbacks",
"promise",
"sync",
"async",
"chain",
"asyncronous",
"parallel",
"sequential",
"metarhia",
"step",
"control",
"flow",
"collector",
"errback",
"err-first",
"error-first",
"callback-last",
"datacollector",
"keycollector",
"composition"
],
"engines": {
"node": ">=8.0.0"
},
"main": "do.js",
"files": [],
"readmeFilename": "README.md",
"scripts": {
"test": "npm run lint && metatests test",
"lint": "eslint . && prettier -c \"**/*.js\" \"**/*.json\" \"**/*.md\" \".*rc\" \"**/*.yml\"",
"fmt": "prettier --write \"**/*.js\" \"**/*.json\" \"**/*.md\" \".*rc\" \"**/*.yml\""
},
"devDependencies": {
"eslint": "^8.53.0",
"eslint-config-prettier": "^9.0.0",
"eslint-plugin-prettier": "^5.0.1",
"metatests": "^0.8.2",
"prettier": "^3.0.3"
}
}