-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
61 lines (61 loc) · 1.65 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
{
"name": "1mb-cli",
"description": "Quickly deploy static content to 1MB's free static hosting service",
"version": "2.0.4",
"author": "Jake Casto",
"bin": {
"1mb-cli": "./bin/run"
},
"bugs": "https://github.com/https://github.com/1mbsite/1mb-cli/issues",
"dependencies": {
"@oclif/command": "^1.5.12",
"@oclif/config": "^1.12.11",
"@oclif/plugin-help": "^2.1.6",
"@oclif/plugin-update": "^1.3.9",
"cli-ux": "^5.2.1",
"configstore": "^4.0.0",
"glob-gitignore": "^1.0.14",
"imgur": "^0.3.1",
"minify": "^4.1.1",
"parse-gitignore": "^1.0.1",
"request": "^2.88.0"
},
"devDependencies": {
"@oclif/dev-cli": "^1.21.3",
"globby": "^8.0.2",
"rimraf": "^2.6.3"
},
"engines": {
"node": ">=8.0.0"
},
"files": [
"/bin",
"/npm-shrinkwrap.json",
"/oclif.manifest.json",
"/src"
],
"homepage": "https://github.com/1mbsite/1mb-cli",
"keywords": [
"oclif"
],
"license": "MIT",
"main": "src/index.js",
"oclif": {
"commands": "./src/commands",
"bin": "1mb",
"plugins": [
"@oclif/plugin-help"
],
"macos": {
"identifier": "site.1mb.cli",
"sign": "/home/forge/ios_distribution.cer"
}
},
"repository": "https://github.com/1mbsite/1mb-cli",
"scripts": {
"postpack": "rimraf oclif.manifest.json",
"prepack": "oclif-dev manifest && oclif-dev readme",
"test": "echo NO TESTS",
"version": "oclif-dev readme && git add README.md"
}
}