-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
109 lines (109 loc) · 3.42 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
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
{
"name": "crawfishcloud",
"version": "0.8.3",
"description": "A Streaming S3 Bucket Glob Crawler",
"--type": "module",
"main": "./build/_/index.mjs",
"exports": {
".": {
"require": "./build/cjs/index.js",
"import": "./build/es/index.js"
}
},
"types": "./src/index.ts",
"files": [
"src/",
"build/"
],
"directories": {
"lib": "src",
"docs": "docs"
},
"scripts": {
"test": "jest --coverage",
"codecov": "codecov",
"docs": "typedoc src/index.ts",
"np:prep": "npm run clear:build; npm run build:tsc",
"np": "npm run np:prep; np",
"clear:build": "rm -rf build/; mkdir -p build/_; mkdir -p build/es; mkdir -p build/cjs",
"lint": "eslint src/index.ts src/crawfishcloud.ts --fix",
"build": "npm run clear:build; npm run build:esb",
"build:tsc": "tsc -m commonjs -t ES2016 --outDir build/cjs --sourceMap false; tsc -m es2020 -t ES2018 --outDir build/es --sourceMap false; rm -r build/**/*.map ; rm build/**/tsconfig.tsbuildinfo ",
"build:esb": "npm run build:esb_esm ; npm run build:esb_cjs ; npm run build:esb_mincjs ; npm run build:esb_minesm",
"build:esb_esm": "esbuild src/index.ts --format=esm --target=node12 --platform=node --bundle > build/_/index.mjs",
"build:esb_minesm": "esbuild src/index.ts --format=esm --target=node12 --platform=node --bundle --minify > build/_/index.min.mjs",
"build:esb_cjs": "esbuild src/index.ts --format=cjs --target=node12 --platform=node --bundle > build/_/index.cjs",
"build:esb_mincjs": "esbuild src/index.ts --format=cjs --target=node12 --platform=node --bundle --minify > build/_/index.min.cjs",
"build:check": "esbuild src/index.ts > /dev/null",
"prepare": "husky install"
},
"homepage": "https://ericdmoore.github.io/crawfishcloud",
"repository": {
"type": "git",
"url": "git+https://github.com/ericdmoore/crawfishcloud.git"
},
"keywords": [
"S3",
"Bucket",
"Stream",
"vfile",
"vinyl",
"glob"
],
"license": "MIT",
"author": {
"name": "Eric D Moore",
"url": "https://im.ericdmoore.com",
"email": "[email protected]"
},
"bugs": {
"url": "https://github.com/ericdmoore/crawfishcloud/issues"
},
"--bundledDependencies": [
"vfile",
"vinyl",
"micromatch"
],
"peerDependencies": {
"aws-sdk": "^2.881.0"
},
"dependencies": {
"micromatch": "^4.0.2",
"vfile": "^4.2.1",
"vinyl": "^2.2.1"
},
"devDependencies": {
"@istanbuljs/nyc-config-typescript": "^1.0.1",
"@types/jest": "^26.0.22",
"@types/lodash.isequal": "^4.5.5",
"@types/micromatch": "^4.0.1",
"@types/node": "^14.14.35",
"@types/vinyl": "^2.0.4",
"@typescript-eslint/eslint-plugin": "^4.20.0",
"@typescript-eslint/parser": "^4.20.0",
"aws-sdk": "*",
"chalk": "^2.4.2",
"codecov": "^3.8.1",
"esbuild": "^0.10.0",
"eslint": "^7.23.0",
"eslint-config-prettier": "^8.1.0",
"eslint-config-standard": "^16.0.2",
"eslint-plugin-import": "^2.22.1",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-prettier": "^3.3.1",
"eslint-plugin-promise": "^4.3.1",
"husky": "^5.2.0",
"jest": "^26.6.3",
"lodash.isequal": "^4.5.0",
"np": "^7.4.0",
"nyc": "^15.1.0",
"prettier": "^2.2.1",
"source-map-support": "^0.5.19",
"ts-jest": "^26.5.4",
"ts-node": "^9.1.1",
"typedoc": "^0.20.35",
"typescript": "^4.2.3",
"vfile": "*",
"vinyl": "*"
}
}