-
Notifications
You must be signed in to change notification settings - Fork 17
Expand file tree
/
Copy pathpackage.json
More file actions
53 lines (53 loc) · 1.84 KB
/
package.json
File metadata and controls
53 lines (53 loc) · 1.84 KB
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
{
"name": "@otto-de/api-guidelines",
"version": "1.0.5",
"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",
"workspaces": [
"api-guidelines-redocly2-ruleset"
],
"files": [
"api-guidelines",
"changes",
"src/portal",
"!**/*.spec.ts"
],
"scripts": {
"build:all": "npm run build --workspaces --include-workspace-root --if-present",
"tsc:all": "npm run tsc --workspaces --include-workspace-root --if-present",
"test:all": "npm run test --workspaces --include-workspace-root --if-present",
"changelog": "npx tsx src/scripts/changelog/index.ts",
"prepare": "husky install src/.husky || exit 0",
"test": "vitest run --root src",
"tsc": "tsc --noEmit -p src/tsconfig.json"
},
"devDependencies": {
"@actions/core": "^1.10.1",
"@actions/github": "^6.0.0",
"@types/node": "^20.9.4",
"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"
}
}