1 | {
|
2 | "name": "fs-capacitor",
|
3 | "version": "8.0.0",
|
4 | "description": "Filesystem-buffered, passthrough stream that buffers indefinitely rather than propagate backpressure from downstream consumers.",
|
5 | "license": "MIT",
|
6 | "author": {
|
7 | "name": "Mike Marcacci",
|
8 | "email": "mike.marcacci@gmail.com"
|
9 | },
|
10 | "repository": "github:mike-marcacci/fs-capacitor",
|
11 | "homepage": "https://github.com/mike-marcacci/fs-capacitor#readme",
|
12 | "bugs": "https://github.com/mike-marcacci/fs-capacitor/issues",
|
13 | "keywords": [
|
14 | "stream",
|
15 | "buffer",
|
16 | "file",
|
17 | "split",
|
18 | "clone"
|
19 | ],
|
20 | "files": [
|
21 | "dist/index.d.ts",
|
22 | "dist/index.js",
|
23 | "dist/index.js.map"
|
24 | ],
|
25 | "main": "dist/index.js",
|
26 | "engines": {
|
27 | "node": "^14.17.0 || >=16.0.0"
|
28 | },
|
29 | "browserslist": {
|
30 | "production": [
|
31 | "node >= 14"
|
32 | ],
|
33 | "development": [
|
34 | "node ^14.17.0",
|
35 | "node >=16.0.0"
|
36 | ]
|
37 | },
|
38 | "ava": {
|
39 | "nodeArguments": [
|
40 | "--experimental-specifier-resolution=node"
|
41 | ]
|
42 | },
|
43 | "devDependencies": {
|
44 | "@types/node": "^18.0.6",
|
45 | "@typescript-eslint/eslint-plugin": "^5.30.7",
|
46 | "@typescript-eslint/parser": "^5.30.7",
|
47 | "ava": "^4.3.1",
|
48 | "eslint": "^8.20.0",
|
49 | "eslint-config-prettier": "^8.5.0",
|
50 | "eslint-plugin-prettier": "^4.2.1",
|
51 | "nodemon": "^2.0.19",
|
52 | "prettier": "^2.7.1",
|
53 | "typescript": "^4.7.4"
|
54 | },
|
55 | "scripts": {
|
56 | "format": "prettier --list-different --write '**/*.{json,yml,md,ts}'",
|
57 | "lint": "prettier -c '**/*.{json,yml,md,ts}' && eslint src --ext ts",
|
58 | "build": "rm -rf dist && tsc",
|
59 | "build:development": "rm -rf dist && tsc --watch",
|
60 | "test": "ava --verbose dist/index.test.js",
|
61 | "test:development": "ava --verbose --watch dist/index.test.js",
|
62 | "prepare": "yarn build",
|
63 | "prepublishOnly": "yarn install && yarn lint && yarn build && yarn test"
|
64 | },
|
65 | "dependencies": {},
|
66 | "type": "module",
|
67 | "exports": "./dist/index.js"
|
68 | }
|