This repository has been archived by the owner on Oct 9, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 7
/
package.json
87 lines (87 loc) · 1.98 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
{
"name": "@chec/cli",
"description": "A command line interface for using the Chec API",
"version": "1.3.0",
"author": "Chec Platform",
"bin": {
"chec": "./bin/run"
},
"bugs": "https://github.com/chec/cli/issues",
"dependencies": {
"@oclif/command": "^1",
"@oclif/config": "^1",
"@oclif/plugin-help": "^2",
"chalk": "^2.4.2",
"cli-ux": "^5.3.2",
"clipboardy": "^2.1.0",
"date-format": "^2.1.0",
"fstream": "^1.0.12",
"got": "^9.6.0",
"inquirer": "^7.0.0",
"json-colorizer": "^2.2.1",
"key-value-file": "^1.0.7",
"lodash.get": "^4.4.2",
"log-update": "^3.3.0",
"ora": "3.4.0",
"pusher-js": "^5.0.2",
"query-string": "^6.8.3",
"unzipper": "^0.10.5"
},
"devDependencies": {
"@oclif/dev-cli": "^1",
"@oclif/test": "^1",
"chai": "^4",
"eslint": "^5.13",
"eslint-config-oclif": "^3.1",
"globby": "^10",
"mocha": "^5",
"mock-spawn": "^0.2.6",
"nock": "^11.4.0",
"nyc": "^13",
"proxyquire": "^2.1.3",
"sinon": "^7.5.0",
"sinon-chai": "^3.3.0",
"stream-mock": "^2.0.5",
"strip-ansi": "^5.2.0"
},
"engines": {
"node": ">=8.3.0"
},
"files": [
"/bin",
"/npm-shrinkwrap.json",
"/oclif.manifest.json",
"/src"
],
"homepage": "https://github.com/chec/cli",
"keywords": [
"chec",
"chec.io",
"commercejs",
"commerce.js"
],
"license": "BSD-3-Clause",
"main": "src/index.js",
"oclif": {
"commands": "./src/commands",
"bin": "chec",
"plugins": [
"@oclif/plugin-help"
],
"hooks": {
"init": [
"./src/hooks/add-chec-logo"
]
}
},
"repository": "chec/cli",
"scripts": {
"postpack": "rm -f oclif.manifest.json",
"posttest": "eslint .",
"prepack": "oclif-dev manifest && oclif-dev readme",
"lint": "eslint .",
"lint:fix": "eslint . --fix",
"test": "nyc mocha --forbid-only \"test/**/*.test.js\"",
"version": "oclif-dev readme && git add README.md"
}
}