-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
47 lines (47 loc) · 1.38 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
{
"name": "currify",
"version": "4.0.0",
"type": "commonjs",
"description": "translate the evaluation of a function that takes multiple arguments into evaluating a sequence of functions, each with a single or more arguments",
"main": "lib/currify.js",
"scripts": {
"test": "madrun test",
"coverage": "madrun coverage",
"lint": "madrun lint",
"fix:lint": "madrun fix:lint",
"watcher": "madrun watcher",
"watch:test": "madrun watch:test",
"watch:lint": "madrun watch:lint",
"watch:tape": "madrun watch:tape",
"watch:coverage:base": "madrun watch:coverage:base",
"watch:coverage:tape": "madrun watch:coverage:tape",
"watch:coverage": "madrun watch:coverage"
},
"repository": {
"type": "git",
"url": "git://github.com/coderaiser/currify.git"
},
"keywords": [
"currify",
"partial",
"functional"
],
"author": "coderaiser <[email protected]> (http://coderaiser.github.io/)",
"license": "MIT",
"bugs": {
"url": "https://github.com/coderaiser/currify/issues"
},
"homepage": "https://github.com/coderaiser/currify",
"devDependencies": {
"c8": "^7.11.3",
"eslint": "^8.18.0",
"eslint-plugin-node": "^11.0.0",
"eslint-plugin-putout": "^15.8.0",
"madrun": "^9.0.5",
"nodemon": "^2.0.2",
"putout": "^26.19.0",
"supertape": "^7.5.1",
"try-catch": "^3.0.1"
},
"dependencies": {}
}