-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
62 lines (62 loc) · 1.81 KB
/
package.json
File metadata and controls
62 lines (62 loc) · 1.81 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
58
59
60
61
62
{
"name": "@fluidware-it/httpclient",
"version": "0.3.0",
"description": "http client package based on node fetch",
"main": "build/src/index.js",
"module": "build/esm/index.js",
"esnext": "build/esnext/index.js",
"types": "build/src/index.d.ts",
"publishConfig": {
"access": "public"
},
"author": "Fluidware srl",
"license": "Apache-2.0",
"scripts": {
"prepack": "npm run compile",
"precompile": "tsc --version && npm run version:update",
"version:update": "node ./scripts/version-update.mjs",
"compile": "npm run clean && tsc --build tsconfig.json tsconfig.esm.json tsconfig.esnext.json",
"clean": "tsc --build --clean tsconfig.json tsconfig.esm.json tsconfig.esnext.json",
"lint": "eslint",
"lint:fix": "eslint --fix",
"preversion": "npm run lint && npm run test",
"pretest": "npm run compile",
"test": "NODE_ENV=test jest tests/*.test.ts",
"start": "node src/index.ts"
},
"engines": {
"node": ">=18.18"
},
"devDependencies": {
"@types/express": "4.17.20",
"@types/jest": "30.0.0",
"@types/mocha": "10.0.3",
"@types/node": "24.6.1",
"@typescript-eslint/eslint-plugin": "8.45.0",
"@typescript-eslint/parser": "8.45.0",
"eslint": "9.36.0",
"eslint-config-prettier": "10.1.8",
"eslint-plugin-n": "17.15.1",
"eslint-plugin-prettier": "5.5.4",
"express": "5.1.0",
"globals": "14.0.0",
"jest": "30.2.0",
"prettier": "3.4.2",
"ts-jest": "29.4.4",
"typescript": "5.9.3",
"typescript-eslint": "8.45.0"
},
"files": [
"build/esm/**/*.js",
"build/esm/**/*.js.map",
"build/esm/**/*.d.ts",
"build/esnext/**/*.js",
"build/esnext/**/*.js.map",
"build/esnext/**/*.d.ts",
"build/src/**/*.js",
"build/src/**/*.js.map",
"build/src/**/*.d.ts",
"LICENSE",
"README.md"
]
}