-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
66 lines (66 loc) · 1.75 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
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
{
"name": "lz-promise",
"version": "1.0.1",
"description": "Lazy evaluation for asynchronous operations",
"keywords": [
"lazy",
"io",
"defer",
"deferred"
],
"main": "lib/LazyPromise.js",
"scripts": {
"test": "nyc mocha -r ts-node/register src/**/*.spec.ts",
"coverage": "nyc report --reporter=text-lcov | coveralls",
"build:doc": "bash ./build_README.sh | tee README.md",
"prepublish": "tsc"
},
"types": "./src/LazyPromise.d.ts",
"repository": {
"type": "git",
"url": "git+https://github.com/wmsmacdonald/lz-promise.git"
},
"author": "William MacDonald",
"license": "MIT",
"bugs": {
"url": "https://github.com/wmsmacdonald/lz-promise/issues"
},
"homepage": "https://github.com/wmsmacdonald/lz-promise#readme",
"devDependencies": {
"@types/chai": "^4.1.4",
"@types/mocha": "^5.2.5",
"@types/node": "^10.5.3",
"@types/promise.prototype.finally": "^2.0.2",
"@types/sinon": "^5.0.1",
"chai": "^4.1.2",
"jsdoc-babel": "^0.4.0-alpha.0",
"jsdoc-to-markdown": "^4.0.1",
"mocha": "^5.2.0",
"promise.prototype.finally": "^3.1.0",
"sinon": "^6.1.4",
"ts-node": "^7.0.0",
"@babel/cli": "^7.0.0-beta.40",
"@babel/core": "^7.0.0-beta.41",
"@babel/plugin-proposal-class-properties": "^7.0.0-beta.40",
"@babel/plugin-proposal-decorators": "^7.0.0-beta.55",
"@babel/plugin-proposal-object-rest-spread": "^7.0.0-beta.40",
"@babel/preset-env": "^7.0.0-beta.40",
"@babel/preset-typescript": "^7.0.0-beta.40",
"typescript": "^3.0.1",
"nyc": "^12.0.2",
"coveralls": "^3.0.2"
},
"dependencies": {
},
"nyc": {
"extension": [
".ts",
".tsx"
],
"exclude": [
"**/*.d.ts",
"./lib"
],
"all": true
}
}