-
Notifications
You must be signed in to change notification settings - Fork 43
/
package.json
117 lines (117 loc) · 3.31 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
104
105
106
107
108
109
110
111
112
113
114
115
116
117
{
"name": "rdme",
"version": "8.4.0",
"description": "ReadMe's official CLI and GitHub Action.",
"license": "MIT",
"author": "ReadMe <support@readme.io> (https://readme.com)",
"engines": {
"node": ">=14"
},
"bin": {
"rdme": "bin/rdme"
},
"keywords": [
"api",
"apidoc",
"apis",
"documentation",
"microservice",
"oai",
"oas",
"openapi",
"openapi document",
"openapi initiative",
"openapi spec",
"openapi specification",
"postman",
"readme",
"swagger"
],
"repository": {
"type": "git",
"url": "git://github.com/readmeio/rdme.git"
},
"bugs": {
"url": "https://github.com/readmeio/rdme/issues"
},
"dependencies": {
"@actions/core": "^1.6.0",
"chalk": "^4.1.2",
"ci-info": "^3.6.1",
"command-line-args": "^5.2.0",
"command-line-usage": "^6.0.2",
"config": "^3.1.0",
"configstore": "^5.0.0",
"debug": "^4.3.3",
"editor": "^1.0.0",
"form-data": "^4.0.0",
"gray-matter": "^4.0.1",
"ignore": "^5.2.0",
"mime-types": "^2.1.35",
"node-fetch": "^2.6.1",
"oas": "^20.2.0",
"oas-normalize": "^8.1.3",
"open": "^8.2.1",
"ora": "^5.4.1",
"parse-link-header": "^2.0.0",
"pluralize": "^8.0.0",
"prompts": "^2.4.2",
"semver": "^7.0.0",
"simple-git": "^3.13.0",
"table": "^6.8.1",
"tmp-promise": "^3.0.2",
"update-notifier-cjs": "^5.1.5",
"validator": "^13.7.0"
},
"devDependencies": {
"@readme/better-ajv-errors": "^1.5.0",
"@readme/eslint-config": "^10.3.1",
"@readme/oas-examples": "^5.3.0",
"@types/command-line-args": "^5.2.0",
"@types/command-line-usage": "^5.0.2",
"@types/config": "^3.3.0",
"@types/configstore": "^6.0.0",
"@types/debug": "^4.1.7",
"@types/jest": "^29.2.4",
"@types/js-yaml": "^4.0.5",
"@types/mime-types": "^2.1.1",
"@types/node-fetch": "^2.6.2",
"@types/parse-link-header": "^2.0.0",
"@types/pluralize": "^0.0.29",
"@types/prompts": "^2.4.2",
"@types/semver": "^7.3.12",
"@types/tmp": "^0.2.3",
"@types/validator": "^13.7.6",
"ajv": "^8.11.0",
"eslint": "^8.29.0",
"jest": "^29.0.3",
"jest-extended": "^3.0.0",
"js-yaml": "^4.1.0",
"nock": "^13.2.7",
"prettier": "^2.8.1",
"ts-jest": "^29.0.0",
"ts-node": "^10.9.1",
"type-fest": "^3.0.0",
"typescript": "^4.9.4"
},
"scripts": {
"build": "tsc",
"bump": "npm version -m 'build: %s release'",
"debug": "ts-node src/cli.ts",
"lint": "eslint . bin/rdme --ext .js,.ts",
"lint-docs": "npx alex . && npm run prettier:docs",
"postversion": "git tag $npm_package_version && ./bin/set-major-version-tag.js",
"prebuild": "rm -rf dist/",
"prepack": "npm run build",
"pretest": "npm run lint && npm run lint-docs",
"prettier": "prettier --list-different \"./**/**.{md,js,ts}\"",
"prettier:docs": "prettier --list-different \"./**/**.md\"",
"prettier:write": "prettier --list-different --write \"./**/**.{md,js,ts}\"",
"preversion": "npm ci && npm run build",
"release": "npx conventional-changelog-cli -i CHANGELOG.md -s",
"release:gh": "gh release create $npm_package_version --draft --generate-notes",
"test": "jest --coverage",
"version": "npm run release && git add CHANGELOG.md"
},
"prettier": "@readme/eslint-config/prettier"
}