-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
74 lines (74 loc) · 1.84 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
{
"name": "@bueno-systems/next-actuator",
"version": "0.0.0-semantic-release",
"description": "Provide Next.js routes for monitoring and management of your application in Production.",
"main": "dist/index.js",
"module": "dist/index.js",
"types": "dist/index.d.ts",
"author": "Jack Cuthbert <[email protected]>",
"license": "MIT",
"private": false,
"scripts": {
"build": "tsc -b",
"prepublish": "yarn build",
"lint": "eslint --ext .js,.ts,.tsx .",
"test": "jest"
},
"files": [
"dist"
],
"engines": {
"node": ">=16.0.0"
},
"keywords": [
"actuator",
"next.js",
"health-check",
"ping",
"metrics",
"kubernetes"
],
"bugs": {
"url": "https://github.com/bueno-systems/next-actuator/issues"
},
"repository": {
"type": "git",
"url": "git+https://github.com/bueno-systems/next-actuator.git"
},
"release": {
"branches": [
"main",
"next"
]
},
"publishConfig": {
"access": "public"
},
"homepage": "https://github.com/bueno-systems/next-actuator#readme",
"devDependencies": {
"@commitlint/cli": "^17.1.2",
"@commitlint/config-conventional": "^17.1.0",
"@types/jest": "^29.0.3",
"@types/node": "^18.7.18",
"@typescript-eslint/eslint-plugin": "^5.37.0",
"eslint": "^8.23.1",
"eslint-config-prettier": "^8.5.0",
"eslint-config-standard-with-typescript": "^23.0.0",
"eslint-plugin-import": "^2.26.0",
"eslint-plugin-n": "^15.2.5",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-prettier": "^4.2.1",
"eslint-plugin-promise": "^6.0.1",
"husky": "^8.0.0",
"jest": "^29.0.3",
"next": "^12.3.0",
"node-mocks-http": "^1.11.0",
"prettier": "^2.7.1",
"semantic-release": "^19.0.5",
"ts-jest": "^29.0.1",
"typescript": "^4.8.3"
},
"peerDependencies": {
"next": ">=12.0.0"
}
}