UNPKG

805 BJSONView Raw
1{
2 "name": "get-stdin",
3 "version": "9.0.0",
4 "description": "Get stdin as a string or buffer",
5 "license": "MIT",
6 "repository": "sindresorhus/get-stdin",
7 "funding": "https://github.com/sponsors/sindresorhus",
8 "author": {
9 "name": "Sindre Sorhus",
10 "email": "sindresorhus@gmail.com",
11 "url": "https://sindresorhus.com"
12 },
13 "type": "module",
14 "exports": "./index.js",
15 "engines": {
16 "node": ">=12"
17 },
18 "scripts": {
19 "test": "xo && ava test.js test-buffer.js && echo unicorns | node test-real.js && tsd"
20 },
21 "files": [
22 "index.js",
23 "index.d.ts"
24 ],
25 "keywords": [
26 "std",
27 "stdin",
28 "stdio",
29 "concat",
30 "buffer",
31 "stream",
32 "process",
33 "read"
34 ],
35 "devDependencies": {
36 "@types/node": "^14.14.41",
37 "ava": "^3.15.0",
38 "delay": "^5.0.0",
39 "tsd": "^0.14.0",
40 "xo": "^0.38.2"
41 }
42}