-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
48 lines (48 loc) · 1.43 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
{
"name": "@readme/micro",
"version": "2.6.1",
"description": "Send your OAS files to ReadMe Micro",
"main": "index.js",
"bin": "index.js",
"repository": {
"type": "git",
"url": "https://github.com/readmeio/readme-micro.git"
},
"homepage": "https://github.com/readmeio/readme-micro",
"scripts": {
"pretest": "npm run lint && npm run prettier",
"lint": "eslint .",
"prettier": "prettier --check \"./**/**.{js,md,yaml,json}\"",
"prettier:fix": "prettier --list-different --write \"./**/**.{js,md,yaml,json}\"",
"test": "jest",
"preversion": "echo $npm_package_version > .old-version.txt",
"version": "sed -i '' \"s/$(cat .old-version.txt)/$npm_package_version/\" README.md && git add README.md",
"postversion": "rm -rf .old-version.txt && ./bin/set-major-version-tag.js"
},
"author": "",
"license": "ISC",
"dependencies": {
"@actions/core": "^1.10.0",
"@actions/github": "^5.0.3",
"axios": "^0.27.2",
"ci-info": "^3.8.0",
"command-line-args": "^5.2.1",
"dotenv": "^16.0.1",
"glob": "^10.3.1",
"ignore": "^5.2.4",
"oas-normalize": "^8.4.0",
"swagger-inline": "^7.0.1"
},
"devDependencies": {
"@readme/eslint-config": "^10.5.2",
"eslint": "^8.37.0",
"jest": "^29.5.0",
"nock": "^13.3.0",
"prettier": "^2.8.7",
"semver": "^7.5.3"
},
"prettier": "@readme/eslint-config/prettier",
"publishConfig": {
"access": "public"
}
}