-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
49 lines (49 loc) · 1.18 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
{
"name": "convenient-fp-utils",
"version": "1.0.0",
"description": "module that wraps different fp libraries together and adds some convenient functions",
"main": "src/index.js",
"files": [
"src"
],
"author": {
"name": "Jesús Ángel Samitier <[email protected]>"
},
"contributors": [
"Dani García <[email protected]>"
],
"license": "MIT",
"engines": {
"node": ">10"
},
"scripts": {
"test": "jest --colors --coverage --collectCoverageFrom=src/**/*.js --detectOpenHandles",
"generate-doc": "npx doxdox src/index.js src/utils.js src/**/*.js --output README.md"
},
"dependencies": {
"fluture": "^13.0.1",
"fluture-sanctuary-types": "^7.0.0",
"node-fetch": "^2.6.1",
"sanctuary": "^3.1.0",
"sanctuary-def": "^0.22.0"
},
"devDependencies": {
"doxdox": "^3.0.0",
"eslint-plugin-sort-destructure-keys": "^1.3.5",
"jest": "^26.6.3"
},
"repository": {
"type": "git",
"url": "https://github.com/eckelon/convenient-fp-utils.git"
},
"jest": {
"coverageThreshold": {
"global": {
"branches": 100,
"functions": 100,
"lines": 100,
"statements": 100
}
}
}
}