-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
41 lines (41 loc) · 1.17 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
{
"name": "@thnetii/http-utils-workspace-root",
"version": "0.0.0",
"private": true,
"repository": {
"type": "git",
"url": "git+https://github.com/thnetii/node-http-utils.git"
},
"author": {
"name": "TH-NETII Rasch Solutions",
"url": "https://thnetii.td.org.uit.no",
"email": "fredrik.rasch@gmail.com"
},
"maintainers": [
"Fredrik Høisæther Rasch <fredrik.rasch@gmail.com>"
],
"license": "MIT",
"bugs": {
"url": "https://github.com/thnetii/node-http-utils/issues"
},
"homepage": "https://github.com/thnetii/node-http-utils#readme",
"workspaces": [
"src/*"
],
"scripts": {
"lint": "npm-run-all --continue-on-error lint:*",
"lint:tsc": "tsc --noEmit -p ./jsconfig.json",
"lint:eslint": "eslint -c ./.eslintrc.yml .",
"prettier": "prettier --write .",
"prettier:check": "prettier --check ."
},
"devDependencies": {
"@thnetii/eslint-config-node-base": "https://gitpkg.now.sh/thnetii/eslint-config/src/eslint-config-node-base?882fc4f",
"@tsconfig/node20": "^20",
"@tsconfig/strictest": "^2.0.5",
"eslint": "^8.57.1",
"npm-run-all": "^4.1.5",
"prettier": "^3.3",
"typescript": "^5"
}
}