-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
57 lines (57 loc) · 1.46 KB
/
package.json
File metadata and controls
57 lines (57 loc) · 1.46 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
54
55
56
57
{
"name": "@digicatapult/openapi-merger",
"version": "1.2.43",
"description": "Amalgamated API specs for openapi",
"main": "app/index.js",
"scripts": {
"test": "NODE_ENV=test mocha --config ./test/mocharc.json ./test",
"lint": "eslint .",
"depcheck": "depcheck",
"start": "node app/index.js",
"dev": "NODE_ENV=dev nodemon app/index.js | pino-colada",
"coverage": "c8 npm run test"
},
"repository": {
"type": "git",
"url": "git+https://github.com/digicatapult/openapi-merger.git"
},
"engines": {
"node": "24.x",
"npm": "11.x"
},
"keywords": [
"openapi"
],
"author": "Digital Catapult",
"license": "Apache-2.0",
"type": "module",
"bugs": {
"url": "https://github.com/digicatapult/openapi-merger/issues"
},
"homepage": "https://github.com/digicatapult/openapi-merger#readme",
"dependencies": {
"body-parser": "^2.2.2",
"dotenv": "^17.4.2",
"envalid": "^8.1.1",
"express": "^5.2.1",
"pino": "^10.3.1",
"pino-http": "^11.0.0",
"swagger-ui-express": "^5.0.1"
},
"devDependencies": {
"@eslint/eslintrc": "^3.3.5",
"@eslint/js": "^10.0.1",
"c8": "^11.0.0",
"chai": "^6.2.2",
"depcheck": "^1.4.7",
"eslint": "^10.4.0",
"eslint-config-prettier": "^10.1.8",
"eslint-plugin-prettier": "^5.5.5",
"globals": "^17.6.0",
"mocha": "^11.7.6",
"nodemon": "^3.1.14",
"pino-colada": "^2.2.2",
"prettier": "^3.8.3",
"supertest": "^7.2.2"
}
}