-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
53 lines (53 loc) · 1.18 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
{
"name": "tinyspec-cloud",
"version": "1.0.2",
"description": "A CLI for Tinyspec Cloud deployment",
"main": "index.js",
"bin": {
"tinyspec-cloud": "./bin/tinyspec-cloud.js"
},
"scripts": {
"lint": "eslint .",
"precommit": "npm run lint"
},
"dependencies": {
"chalk": "^2.4.1",
"js-yaml": "^3.12.0",
"superagent": "^4.0.0-beta.5",
"yargs": "^12.0.2"
},
"devDependencies": {
"eslint": "^5.9.0",
"eslint-config-airbnb-base": "^13.1.0",
"eslint-plugin-import": "^2.14.0"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Ajaxy/tinyspec-cloud.git"
},
"keywords": [
"api",
"rest",
"openapi",
"swagger",
"specification",
"documentation",
"models",
"definitions",
"endpoints",
"paths"
],
"author": "Alexander Zinchuk (alexander@zinchuk.com)",
"license": "MIT",
"bugs": {
"url": "https://github.com/Ajaxy/tinyspec-cloud/issues"
},
"homepage": "https://github.com/Ajaxy/tinyspec-cloud#readme",
"yargs": {
"short-option-groups": false,
"camel-case-expansion": false,
"dot-notation": false,
"parse-numbers": false,
"boolean-negation": false
}
}