-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
76 lines (76 loc) · 2.22 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
{
"name": "blobpack",
"version": "1.3.0",
"description": "Packaging Benthos configs for AWS Lambda was too exciting, now it's acceptably boring.",
"type": "module",
"bin": "bin/blobpack.js",
"main": "index.js",
"exports": {
"import": "./index.js"
},
"module": "index.js",
"sideEffects": false,
"keywords": [
"benthos",
"node"
],
"homepage": "https://github.com/razor-x/blobpack",
"bugs": "https://github.com/razor-x/blobpack/issues",
"repository": "razor-x/blobpack",
"license": "MIT",
"author": {
"name": "Evan Sosenko",
"email": "[email protected]"
},
"files": [
"index.js",
"bin",
"lib",
"data",
"docs"
],
"scripts": {
"test": "c8 ava",
"pretest": "node index.js",
"posttest": "node ./bin/blobpack.js version",
"test:update": "ava --update-snapshots",
"test:watch": "ava --watch",
"test:debug": "ava debug --break",
"lint": "eslint --ignore-path .gitignore --ext .js,.cjs,.mjs .",
"prelint": "prettier --check --ignore-path .gitignore '**/*.(js|cjs|mjs|json|yml|yaml|graphql)'",
"postlint": "documentation lint 'lib/**/*.doc.js'",
"postversion": "git push --follow-tags",
"example": "node examples",
"example:inspect": "node --inspect examples",
"format": "eslint --ignore-path .gitignore --fix --ext .js,.cjs,.mjs .",
"preformat": "prettier --write --ignore-path .gitignore '**/*.(js|cjs|mjs|json|yml|yaml|graphql)'",
"docs": "documentation serve --watch --github 'lib/**/*.doc.js'",
"docs:build": "documentation build --format html --github --output .docs 'lib/**/*.doc.js'",
"report": "c8 report"
},
"engines": {
"node": ">=14.15.0",
"npm": ">= 8.1.0"
},
"dependencies": {
"arg": "^5.0.1",
"download": "^8.0.0",
"js-yaml": "^4.1.0",
"jszip": "^3.7.1",
"mkdirp": "^1.0.4"
},
"devDependencies": {
"@meltwater/examplr": "^7.0.0",
"ava": "^5.0.1",
"c8": "^7.11.0",
"del": "^6.0.0",
"documentation": "^13.2.5",
"eslint": "^8.9.0",
"eslint-config-prettier": "^8.4.0",
"eslint-config-standard": "^17.0.0",
"eslint-plugin-import": "^2.25.4",
"eslint-plugin-n": "^15.0.0",
"eslint-plugin-promise": "^6.0.0",
"prettier": "^2.3.0"
}
}