forked from readmeio/rdme
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
88 lines (88 loc) · 1.94 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
{
"name": "rdme",
"version": "5.2.0",
"description": "ReadMe's API CLI",
"license": "MIT",
"author": "ReadMe <[email protected]> (https://readme.com)",
"engines": {
"node": "^12 || ^14 || ^16"
},
"bin": {
"rdme": "bin/rdme"
},
"tags": [
"api",
"apis",
"openapi",
"swagger",
"openapi initiative",
"openapi specification",
"openapi spec",
"openapi document",
"oai",
"oas",
"apidoc",
"microservice",
"documentation"
],
"repository": {
"type": "git",
"url": "git://github.com/readmeio/rdme.git"
},
"bugs": {
"url": "https://github.com/readmeio/rdme/issues"
},
"dependencies": {
"cli-table": "^0.3.1",
"colors": "^1.1.2",
"command-line-args": "^5.2.0",
"command-line-usage": "^6.0.2",
"config": "^3.1.0",
"configstore": "^5.0.0",
"editor": "^1.0.0",
"enquirer": "^2.3.0",
"form-data": "^4.0.0",
"gray-matter": "^4.0.1",
"isemail": "^3.1.3",
"node-fetch": "^2.6.1",
"oas": "^14.6.1",
"oas-normalize": "^4.0.0",
"open": "^8.2.1",
"parse-link-header": "^1.0.1",
"read": "^1.0.7",
"semver": "^7.0.0",
"table-layout": "^1.0.0",
"tmp-promise": "^3.0.2"
},
"devDependencies": {
"@readme/eslint-config": "^7.1.1",
"eslint": "^7.32.0",
"jest": "^27.2.0",
"nock": "^13.1.1",
"prettier": "^2.4.1"
},
"scripts": {
"lint": "eslint .",
"pretest": "npm run lint",
"prettier": "prettier --list-different --write \"./**/**.js\"",
"release": "npx conventional-changelog-cli -i CHANGELOG.md -s",
"test": "jest --coverage"
},
"jest": {
"coverageThreshold": {
"global": {
"branches": 80,
"functions": 80,
"lines": 90,
"statements": 90
}
},
"setupFiles": [
"./__tests__/set-node-env"
],
"testPathIgnorePatterns": [
"./__tests__/set-node-env"
]
},
"prettier": "@readme/eslint-config/prettier"
}