This repository was archived by the owner on Jan 2, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
88 lines (88 loc) · 2.21 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
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
{
"name": "request-stream-promise",
"version": "2.1.8",
"description": "Promise for streamed downloads using request",
"repository": {
"type": "git",
"url": "https://github.com/holvonix-open/request-stream-promise.git"
},
"keywords": [
"request",
"promise",
"stream",
"pipe"
],
"engines": {
"node": "^10.0.0",
"yarn": "^1.0.0"
},
"main": "build/src/index.js",
"types": "build/src/index.d.ts",
"files": [
"build/src/**/*.js",
"build/src/**/*.d.ts",
"LICENSE",
"NOTICE",
"README.md"
],
"nyc": {
"cache": false,
"extension": [
".ts",
".tsx"
],
"exclude": [
"prettier.config.js",
"**/*.d.ts",
"test/**/*.*",
"build/**/**/*.js"
],
"all": true
},
"author": "Holvonix LLC",
"license": "Apache-2.0",
"private": false,
"scripts": {
"t": "yarn fix && yarn test --grep='#slow' --invert",
"cleantests": "rm -rf *.lcov .nyc_output coverage",
"clean": "gts clean",
"start": "node index.js",
"debug": "node --inspect index.js",
"cleanstart": "yarn clean; yarn start",
"test": "nyc ts-mocha -p ./tsconfig.json 'test/**/*.ts'",
"test-coverage": "yarn clean && yarn test && yarn report-coverage",
"report-coverage": "nyc report --reporter=json && codecov -F unit -f coverage/*.json",
"lint": "yarn fix && yarn run check",
"check": "gts check",
"compile": "tsc -p .",
"fix": "gts fix",
"prepare": "yarn clean && yarn run check && yarn run compile",
"pretest": "yarn run compile",
"posttest": "yarn run check",
"preversion": "yarn test",
"semantic-release": "semantic-release"
},
"release": {
"extends": "@holvonix-open/release-config-js"
},
"dependencies": {
"bluebird": "^3.5.5",
"request": "^2.88.0"
},
"devDependencies": {
"@holvonix-open/release-config-js": "^1.0.12",
"@types/bluebird": "^3.5.29",
"@types/mocha": "^5.2.5",
"@types/node": "^12.12.7",
"@types/request": "^2.48.3",
"@types/tmp": "^0.1.0",
"codecov": "^3.6.1",
"gts": "^1.0.0",
"mocha": "^6.2.2",
"nock": "^11.7.0",
"nyc": "^15.0.0",
"tmp-promise": "^2.0.2",
"ts-mocha": "^6.0.0",
"typescript": "~3.7.2"
}
}