-
-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
42 lines (42 loc) · 1.28 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
{
"name": "@jorgeferrero/stream-to-buffer",
"version": "2.0.6",
"description": "A promise based npm package that converts a node.js ReadStream to buffer",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"directories": {
"lib": "lib",
"test": "test"
},
"scripts": {
"start": "npm run build && node dist/index.js",
"build": "npm run build-ts",
"build-ts": "tsc",
"test": "jest --forceExit --verbose --detectOpenHandles",
"watch-test": "npm run test -- --watchAll"
},
"keywords": [
"typescript",
"node.js",
"streaming"
],
"author": "Jorge Ferrero Linacero <[email protected] | [email protected]>",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/jferrl/stream-to-buffer.git"
},
"bugs": {
"url": "https://github.com/jferrl/stream-to-buffer/issues"
},
"homepage": "https://github.com/jferrl/stream-to-buffer#readme",
"devDependencies": {
"@types/jest": "^25.2.1",
"@types/node": "^13.13.5",
"jest": "^26.0.1",
"ts-jest": "^25.5.0",
"tslint": "^6.1.2",
"tslint-config-prettier": "^1.18.0",
"typescript": "^3.8.3"
}
}