-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
94 lines (94 loc) · 2.82 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
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
{
"name": "@owservable/fastify-auto-routes",
"version": "0.5.0",
"description": "fastify auto routes",
"engines": {
"node": ">=20"
},
"main": "./lib/fastify.auto.routes.js",
"types": "./lib/fastify.auto.routes.d.ts",
"author": "Predrag Stojadinovic <predrag@stojadinovic.net>",
"license": "Unlicense",
"files": [
"lib/**/*"
],
"repository": {
"type": "git",
"url": "git+https://github.com/owservable/fastify-auto-routes.git"
},
"scripts": {
"all": "pnpm i & pnpm dedupe & tsc & pnpm clean & pnpm build & pnpm test & pnpm docs & skeletest & strictr",
"build": "del /S /Q lib\\* && tsc",
"build:watch": "tsc --watch",
"lint": "tslint -p tsconfig.json",
"clean": "tslint --config tslint-imports.json --fix --project .",
"format": "prettier --write \"src/**/*.ts\"",
"docs": "typedoc --readme none --out docs ./src/fastify.auto.routes.ts",
"sync": "git pull & git fetch origin & git merge origin/main & pnpm i & git branch",
"test": "nyc --all --reporter=lcov --reporter=html mocha -r ts-node/register test/**/*.spec.ts --code-coverage",
"coveralls": "cat ./coverage/lcov.info | node node_modules/.bin/coveralls",
"sonar": "sonarjs -e .sonarlint/**,node_modules/**,coverage/**,.nyc_output/**",
"test_qube": "nyc --reporter=lcov mocha -R @danmasta/mocha-sonar -r ts-node/register test/**/*.spec.ts",
"up": "pnpm up -i",
"latest": "pnpm up -i -L",
"l": "pnpm i & pnpm latest",
"preinstall": "npx only-allow pnpm"
},
"dependencies": {
"@owservable/actions": "^0.2.0",
"@owservable/folders": "^0.2.0",
"@types/lodash": "^4.17.13",
"@types/node": "^22.9.0",
"fastify": "^5.1.0",
"lodash": "^4.17.21"
},
"devDependencies": {
"@danmasta/mocha-sonar": "^1.1.0",
"@faker-js/faker": "^9.2.0",
"@types/chai": "^4.3.18",
"@types/mocha": "^10.0.9",
"@types/rewire": "^2.5.30",
"chai": "4.4.0",
"coveralls": "^3.1.1",
"mocha": "^10.8.2",
"nyc": "^17.1.0",
"prettier": "^3.3.3",
"rewire": "^7.0.0",
"skeletest": "^0.5.3",
"sonarjs": "^1.0.0",
"source-map-support": "^0.5.21",
"strictr": "^0.2.7",
"ts-node": "^10.9.2",
"tslint": "^6.1.3",
"tslint-config-prettier": "^1.18.0",
"tslint-etc": "^1.13.10",
"tslint-no-unused-expression-chai": "^0.1.4",
"typedoc": "^0.26.11",
"typescript": "^5.6.3"
},
"pnpm": {
"allowedDeprecatedVersions": {
"tslint": "6.1.3"
},
"updateConfig": {
"ignoreDependencies": [
"chai",
"@types/chai",
"sonarjs",
"tslint"
]
},
"overrides": {
"mem@<4.0.0": ">=4.0.0",
"yargs-parser@>=6.0.0 <13.1.2": ">=13.1.2",
"nanoid@>=3.0.0 <3.1.31": ">=3.1.31",
"ansi-regex@>=3.0.0 <3.0.1": ">=3.0.1",
"qs@>=6.5.0 <6.5.3": ">=6.5.3",
"semver@<5.7.2": ">=5.7.2",
"semver@>=6.0.0 <6.3.1": ">=6.3.1",
"@babel/traverse@<7.23.2": ">=7.23.2",
"json5@>=2.0.0 <2.2.2": ">=2.2.2",
"tough-cookie@<4.1.3": ">=4.1.3"
}
}
}