generated from MapColonies/ts-npm-package-boilerplate
-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
77 lines (77 loc) · 2.15 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
75
76
77
{
"name": "@map-colonies/openapi-express-viewer",
"version": "3.0.0",
"description": "A package for openapi ui middleware for express",
"main": "./dist/index.js",
"exports": {
".": {
"import": "./dist/index.js",
"require": "./dist/index.js"
}
},
"scripts": {
"test": "jest --config=./tests/configurations/jest.config.js",
"format": "prettier --check .",
"format:fix": "prettier --write .",
"prelint:fix": "npm run format:fix",
"prelint": "npm run format",
"lint": "eslint .",
"lint:fix": "eslint --fix .",
"release": "standard-version",
"prebuild": "npm run clean",
"build": "tsc --project tsconfig.build.json",
"start": "npm run build && cd dist && node ./index.js",
"clean": "rimraf dist",
"prepublish": "npm run build",
"prepare": "husky"
},
"repository": {
"type": "git",
"url": "git+https://github.com/MapColonies/openapi-express-viewer.git"
},
"author": "MapColonies",
"license": "ISC",
"bugs": {
"url": "https://github.com/MapColonies/openapi-express-viewer/issues"
},
"files": [
"dist/**/*"
],
"publishConfig": {
"access": "public"
},
"engines": {
"node": ">=20"
},
"homepage": "https://github.com/MapColonies/openapi-express-viewer#readme",
"devDependencies": {
"@commitlint/cli": "^19.5.0",
"@commitlint/config-conventional": "^19.5.0",
"@map-colonies/eslint-config": "^4.0.0",
"@map-colonies/prettier-config": "0.0.1",
"@types/express": "^4.17.21",
"@types/jest": "^29.5.13",
"@types/js-yaml": "^4.0.9",
"@types/node": "^22.5.5",
"@types/supertest": "^6.0.2",
"@types/swagger-ui-express": "^4.1.6",
"commitlint": "^19.5.0",
"eslint": "^8.16.0",
"express": "^4.21.0",
"husky": "^9.1.6",
"jest": "^29.7.0",
"jest-create-mock-instance": "^2.0.0",
"jest-html-reporters": "^3.1.7",
"prettier": "^3.3.3",
"pretty-quick": "^4.0.0",
"supertest": "^7.0.0",
"ts-jest": "^29.2.5",
"typescript": "^5.5.4",
"@map-colonies/tsconfig": "^1.0.0"
},
"dependencies": {
"http-status-codes": "^2.3.0",
"js-yaml": "^4.1.0",
"swagger-ui-express": "^5.0.1"
}
}