-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
63 lines (63 loc) · 1.55 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
{
"name": "sideboard",
"description": "Handy filestore",
"version": "0.1.0",
"author": "Stuart Ellis <[email protected]>",
"bin": {
"sb": "./bin/run"
},
"bugs": "https://github.com/stuartellis/sideboard/issues",
"dependencies": {
"@aws-sdk/client-s3": "^3.6.0",
"@aws-sdk/s3-request-presigner": "^3.6.0",
"@oclif/command": "^1.8.0",
"@oclif/config": "^1.17.0",
"@oclif/plugin-help": "^3.2.1",
"cli-table": "^0.3.6",
"fs-extra": "^9.1.0"
},
"devDependencies": {
"@oclif/dev-cli": "^1.26.0",
"@oclif/test": "^1.2.8",
"chai": "^4.2.0",
"eslint": "^5.16.0",
"eslint-config-oclif": "^3.1.0",
"globby": "^11.0.2",
"mocha": "^5.2.0",
"nyc": "^15.1.0"
},
"engines": {
"node": ">=10.0.0"
},
"files": [
"/bin",
"/npm-shrinkwrap.json",
"/oclif.manifest.json",
"/src"
],
"homepage": "https://github.com/stuartellis/sideboard",
"keywords": [
"oclif"
],
"license": "MIT",
"main": "src/index.js",
"oclif": {
"commands": "./src/commands",
"bin": "sb",
"macos": {
"identifier": "org.stuartellis.sideboard"
},
"plugins": [
"@oclif/plugin-help"
]
},
"repository": "https://github.com/stuartellis/sideboard",
"scripts": {
"clean": "rm -fr dist tmp oclif.manifest.json",
"postpack": "rm -f oclif.manifest.json",
"posttest": "eslint .",
"prepack": "oclif-dev manifest && oclif-dev readme",
"test": "nyc mocha --forbid-only \"test/**/*.test.js\"",
"version": "oclif-dev readme && git add README.md"
}
}