forked from otto-de/api-guidelines
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
56 lines (56 loc) · 1.92 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
{
"name": "@otto-de/api-guidelines",
"version": "0.1.19",
"description": "This repository is the source for establishing a uniform API standard (aka API Guidelines), which serves as a set of rules for the creation of new APIs within MA-EC. (In the future, this standard can also be used to unify existing APIs.) The [API Manifesto](/manifesto.md) helps to establish this standard and comprises values that a work group has agreed upon in advance.",
"author": "",
"license": "ISC",
"homepage": "https://github.com/otto-de/api-guidelines#readme",
"repository": {
"type": "git",
"url": "git+https://github.com/otto-de/api-guidelines.git"
},
"bugs": {
"url": "https://github.com/otto-de/api-guidelines/issues"
},
"engines": {
"node": ">=16"
},
"type": "module",
"files": [
"dist",
"api-guidelines",
"changes",
"src/linting",
"src/portal",
"!**/*.spec.ts",
"!**/__tests__"
],
"scripts": {
"build": "npm run clean && npm run build:redocly",
"build:redocly": "esbuild src/linting/plugin.ts --bundle --platform=node --outfile=dist/plugin.cjs --log-level=warning --external:@redocly/openapi-core",
"changelog": "npx tsx src/scripts/changelog/index.ts",
"clean": "rm -rf ./dist",
"prepare": "husky install src/.husky || exit 0",
"prepack": "npm run build",
"test": "vitest run --root src",
"tsc": "tsc --noEmit -p src/tsconfig.json"
},
"devDependencies": {
"@actions/core": "^1.10.1",
"@actions/github": "^6.0.0",
"@redocly/openapi-core": "^1.4.1",
"@types/node": "^20.9.4",
"esbuild": "^0.19.7",
"eslint": "^8.54.0",
"eslint-config-airbnb-typescript": "^17.1.0",
"eslint-config-prettier": "^9.0.0",
"eslint-plugin-prettier": "^5.0.1",
"husky": "^8.0.3",
"lint-staged": "^15.1.0",
"markdownlint-cli": "^0.37.0",
"prettier": "^3.1.0",
"tsx": "^4.4.0",
"typescript": "^5.3.2",
"vitest": "^0.34.6"
}
}