forked from readmeio/rdme
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
80 lines (80 loc) · 1.76 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
{
"author": "ReadMe <[email protected]> (https://readme.com)",
"name": "rdme",
"description": "ReadMe's API CLI",
"bin": {
"rdme": "rdme.js"
},
"tags": [
"api",
"apis",
"swagger",
"open api initiative",
"open api spec",
"oai",
"oas",
"apidoc",
"microservice",
"documentation"
],
"version": "3.8.2",
"repository": {
"type": "git",
"url": "git://github.com/readmeio/rdme.git"
},
"bugs": {
"url": "https://github.com/readmeio/rdme/issues"
},
"main": "index.js",
"engines": {
"node": ">=10"
},
"dependencies": {
"cli-table": "^0.3.1",
"colors": "^1.1.2",
"command-line-args": "^5.1.1",
"command-line-usage": "^6.0.2",
"config": "^3.1.0",
"configstore": "^5.0.0",
"editor": "^1.0.0",
"enquirer": "^2.3.0",
"gray-matter": "^4.0.1",
"isemail": "^3.1.3",
"oas": "^3.4.2",
"open": "^7.0.0",
"read": "^1.0.7",
"request": "^2.88.0",
"request-promise-native": "^1.0.5",
"semver": "^7.0.0",
"table-layout": "^1.0.0"
},
"devDependencies": {
"@readme/eslint-config": "^4.0.0",
"conventional-changelog-cli": "^2.0.31",
"eslint": "^7.1.0",
"jest": "^26.0.1",
"nock": "^13.0.0",
"prettier": "^2.0.1"
},
"scripts": {
"lint": "eslint .",
"pretest": "npm run lint && npm run prettier",
"prettier": "prettier --list-different --write \"./**/**.js\"",
"release": "conventional-changelog -i CHANGELOG.md -s",
"test": "jest --coverage"
},
"jest": {
"setupFiles": [
"./test/set-node-env"
],
"coverageThreshold": {
"global": {
"branches": 80,
"functions": 80,
"lines": 90,
"statements": 90
}
}
},
"prettier": "@readme/eslint-config/prettier"
}