-
Notifications
You must be signed in to change notification settings - Fork 8
/
package.json
68 lines (68 loc) · 1.85 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
{
"name": "fs-capacitor",
"version": "8.0.0",
"description": "Filesystem-buffered, passthrough stream that buffers indefinitely rather than propagate backpressure from downstream consumers.",
"license": "MIT",
"author": {
"name": "Mike Marcacci",
"email": "[email protected]"
},
"repository": "github:mike-marcacci/fs-capacitor",
"homepage": "https://github.com/mike-marcacci/fs-capacitor#readme",
"bugs": "https://github.com/mike-marcacci/fs-capacitor/issues",
"keywords": [
"stream",
"buffer",
"file",
"split",
"clone"
],
"files": [
"dist/index.d.ts",
"dist/index.js",
"dist/index.js.map"
],
"main": "dist/index.js",
"engines": {
"node": "^14.17.0 || >=16.0.0"
},
"browserslist": {
"production": [
"node >= 14"
],
"development": [
"node ^14.17.0",
"node >=16.0.0"
]
},
"ava": {
"nodeArguments": [
"--experimental-specifier-resolution=node"
]
},
"devDependencies": {
"@types/node": "^18.0.6",
"@typescript-eslint/eslint-plugin": "^5.30.7",
"@typescript-eslint/parser": "^5.30.7",
"ava": "^4.3.1",
"eslint": "^8.20.0",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-prettier": "^4.2.1",
"nodemon": "^2.0.19",
"prettier": "^2.7.1",
"typescript": "^4.7.4"
},
"scripts": {
"format": "prettier --list-different --write '**/*.{json,yml,md,ts}'",
"lint": "prettier -c '**/*.{json,yml,md,ts}' && eslint src --ext ts",
"build": "rm -rf dist && tsc",
"build:development": "rm -rf dist && tsc --watch",
"test": "ava --verbose dist/index.test.js",
"test:development": "ava --verbose --watch dist/index.test.js",
"prepare": "yarn build",
"prepublishOnly": "yarn install && yarn lint && yarn build && yarn test"
},
"dependencies": {},
"type": "module",
"exports": "./dist/index.js"
}