-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpackage.json
More file actions
50 lines (50 loc) · 1.08 KB
/
package.json
File metadata and controls
50 lines (50 loc) · 1.08 KB
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
{
"name": "promisify-call",
"version": "2.0.4",
"description": "Promisify a function call so users can call a function with a callback or get a promise",
"main": "index.js",
"scripts": {
"test": "ava -v",
"docs": "jsdoc2md \"index.js\" --heading-depth 3 --template readme.hbs > README.md"
},
"repository": {
"type": "git",
"url": "git+https://github.com/bojand/promisify-call.git"
},
"keywords": [
"promise",
"callback",
"promisify"
],
"author": {
"name": "Bojan Djurkovic <dbojan@gmail.com>"
},
"license": "MIT",
"bugs": {
"url": "https://github.com/bojand/promisify-call/issues"
},
"homepage": "https://github.com/bojand/promisify-call#readme",
"dependencies": {
"with-callback": "^1.0.2"
},
"devDependencies": {
"ava": "^0.17.0",
"babel-eslint": "^7.1.1",
"jsdoc-to-markdown": "^2.0.1",
"standard": "^8.5.0"
},
"engines": {
"node": ">=4.0"
},
"ava": {
"files": [
"test/*.test.js"
]
},
"directories": {
"test": "test"
},
"standard": {
"parser": "babel-eslint"
}
}