-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
37 lines (37 loc) · 985 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
{
"name": "maybe-async",
"version": "1.2.4",
"description": "Easy handling of promise/non-promise values.",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"scripts": {
"prepare": "tsc",
"pretest": "npm run prepare",
"posttest": "nyc report -r json && codecov -f coverage/*.json",
"test": "nyc mocha --require source-map-support/register"
},
"repository": {
"type": "git",
"url": "git+https://github.com/alex94puchades/maybe-async.git"
},
"keywords": [
"maybe",
"promise",
"async",
"yield"
],
"author": "Alex Puchades <[email protected]>",
"license": "Apache-2.0",
"bugs": {
"url": "https://github.com/alex94puchades/maybe-async/issues"
},
"homepage": "https://github.com/alex94puchades/maybe-async#readme",
"devDependencies": {
"chai": "^4.1.0",
"codecov": "^2.3.0",
"mocha": "^3.4.2",
"nyc": "^11.1.0",
"source-map-support": "^0.4.15",
"typescript": "^2.4.2"
}
}