-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
54 lines (54 loc) · 1.22 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
{
"name": "flow-hooks",
"version": "1.0.1",
"author": "Dan Radenkovic",
"maintainers": [
{
"name": "Dan Radenkovic",
"email": "dan@radenkovic.org",
"web": "https://github.com/radenkovic"
}
],
"license": "MIT",
"description": "Flow control utilities for javascript on web and node",
"keywords": [
"flow control",
"javascript",
"node",
"hooks",
"es6",
"async",
"flow"
],
"bugs": {
"web": "https://github.com/radenkovic/flow-hooks/issues"
},
"homepage": "https://github.com/radenkovic/flow-hooks",
"main": "lib/index.js",
"scripts": {
"test": "jest",
"lint": "eslint --ext .js --config .eslintrc.js lib/** test/**",
"coverage": "jest --ci --coverage && codecov"
},
"engines": {
"node": ">= 10.0.0",
"yarn": ">= 0.18.0"
},
"directories": {
"lib": "lib"
},
"dependencies": {
"bluebird": "^3.7.2"
},
"devDependencies": {
"codecov": "^3.7.2",
"eslint": "^7.8.1",
"eslint-config-prettier": "^6.11.0",
"eslint-import-resolver-node": "^0.3.4",
"eslint-plugin-import": "^2.22.0",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-prettier": "^3.1.4",
"jest": "^26.4.2",
"prettier": "^2.1.1"
}
}