| 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
 | | { |  |   "name": "call-me-maybe", |  |   "version": "1.0.2", |  |   "description": "Let your JS API users either give you a callback or receive a promise", |  |   "main": "src/maybe.js", |  |   "files": [ |  |     "src" |  |   ], |  |   "devDependencies": { |  |     "@commitlint/config-conventional": "^17.1.0", |  |     "browserify": "^17.0.0", |  |     "commitlint": "^17.1.2", |  |     "husky": "^7.0.0", |  |     "is-ci": "^3.0.1", |  |     "karma": "^6.4.1", |  |     "karma-browserify": "^8.1.0", |  |     "karma-browserstack-launcher": "^1.6.0", |  |     "karma-mocha": "^2.0.1", |  |     "mocha": "^2.3.2", |  |     "promise": "^7.0.4", |  |     "semantic-release": "^19.0.5" |  |   }, |  |   "scripts": { |  |     "test": "mocha", |  |     "prepare": "is-ci || husky install", |  |     "test-browsers": "karma start" |  |   }, |  |   "repository": { |  |     "type": "git", |  |     "url": "git+https://github.com/limulus/call-me-maybe.git" |  |   }, |  |   "keywords": [ |  |     "promise", |  |     "callback", |  |     "denodeify", |  |     "promisify", |  |     "carlyraejepsen" |  |   ], |  |   "author": "Eric McCarthy <eric@limulus.net> (http://www.limulus.net/)", |  |   "license": "MIT", |  |   "bugs": { |  |     "url": "https://github.com/limulus/call-me-maybe/issues" |  |   }, |  |   "homepage": "https://github.com/limulus/call-me-maybe#readme" |  | } | 
 |