-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
38 lines (38 loc) · 957 Bytes
/
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
{
"name": "last-callback",
"version": "2.0.1",
"author": "Paweł Zadrożny <[email protected]> (http://pawelzny.com/)",
"description": "Extract function's last argument and wrap with ready to invoke function.",
"keywords": [
"last",
"callback",
"function",
"argument",
"parameter",
"callback wrapper"
],
"license": "MIT",
"homepage": "https://pawelzny.com/npm/last-callback",
"repository": {
"type": "git",
"url": "git+https://github.com/pawelzny/last-callback.git"
},
"bugs": {
"url": "https://github.com/pawelzny/last-callback/issues"
},
"main": "last-callback.js",
"scripts": {
"test": "./node_modules/.bin/mocha",
"coverage": "./node_modules/.bin/istanbul cover ./node_modules/.bin/_mocha"
},
"engines": {
"node": ">=8.9.0"
},
"devDependencies": {
"chai": "4.1.2",
"eslint": "4.15.0",
"istanbul": "0.4.4",
"mocha": "5.0.0",
"sinon": "4.1.6"
}
}