-
Notifications
You must be signed in to change notification settings - Fork 17
/
package.json
103 lines (103 loc) · 3.06 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
{
"name": "@apimatic/cli",
"description": "The official CLI for APIMatic.",
"version": "1.0.1-alpha.11",
"author": "APIMatic",
"bin": {
"apimatic": "./bin/run"
},
"bugs": "https://github.com/apimatic/apimatic-cli/issues",
"publishConfig": {
"access": "public"
},
"engines": {
"node": ">=12.0.0"
},
"files": [
"/bin",
"/lib",
"/npm-shrinkwrap.json",
"/oclif.manifest.json"
],
"repository": "git://github.com/apimatic/apimatic-cli.git",
"homepage": "https://github.com/apimatic/apimatic-cli",
"keywords": [
"apimatic",
"cli",
"sdk generation",
"openapi",
"api",
"automation"
],
"license": "MIT",
"main": "lib/index.js",
"types": "lib/index.d.ts",
"scripts": {
"build": "tsc -b",
"postpack": "rimraf oclif.manifest.json",
"posttest": "eslint . --ext .ts --config .eslintrc",
"test": "nyc --extension .ts mocha --forbid-only \"test/**/*.test.ts\"",
"prettier": "prettier \"src/**/*.{js,ts}\"",
"format": "prettier --write \"src/**/*.{js,ts}\"",
"lint": "eslint \"src/**/*.{js,ts}\"",
"lint:fix": "eslint --fix \"src/**/*.{js,ts}\" --quiet"
},
"dependencies": {
"@apimatic/sdk": "^0.1.0-alpha.2",
"@oclif/command": "^1.8.0",
"@oclif/config": "^1.17.0",
"@oclif/plugin-autocomplete": "^0.3.0",
"@oclif/plugin-help": "^3.2.3",
"@oclif/plugin-not-found": "^1.2.4",
"archiver": "^5.3.0",
"axios": "^0.24.0",
"base-64": "^1.0.0",
"form-data": "^4.0.0",
"fs-extra": "^10.0.0",
"striptags": "^3.2.0",
"tslib": "^2.5.0",
"unzipper": "^0.10.11"
},
"devDependencies": {
"@commitlint/cli": "^15.0.0",
"@commitlint/config-conventional": "^15.0.0",
"@oclif/dev-cli": "^1.26.0",
"@oclif/test": "^1.2.8",
"@types/archiver": "^5.1.1",
"@types/axios": "^0.14.0",
"@types/base-64": "^1.0.0",
"@types/chai": "^4.2.22",
"@types/fs-extra": "^9.0.13",
"@types/mocha": "^5.2.7",
"@types/node": "^10.17.60",
"@types/unzipper": "^0.10.4",
"@typescript-eslint/eslint-plugin": "^5.0.0",
"@typescript-eslint/parser": "^5.0.0",
"chai": "^4.3.4",
"eslint": "^7.32.0",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-import": "^2.25.2",
"globby": "^10.0.2",
"husky": "^7.0.4",
"lint-staged": "^11.2.6",
"mocha": "^5.2.0",
"nyc": "^14.1.1",
"prettier": "^2.4.1",
"rimraf": "^3.0.2",
"ts-node": "^8.10.2",
"typescript": "^5.2.2"
},
"oclif": {
"commands": "./lib/commands",
"bin": "apimatic",
"plugins": [
"@oclif/plugin-autocomplete",
"@oclif/plugin-help",
"@oclif/plugin-not-found"
]
},
"lint-staged": {
"*.js": "eslint --cache --fix",
"*.{js,ts}": "prettier --write"
}
}