-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
57 lines (57 loc) · 1.42 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
{
"name": "@pedro2s/nestjs-http-async",
"version": "1.0.1",
"description": "HttpService Async for NestJS",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"scripts": {
"build": "tsc",
"release": "npm publish",
"clean": "rimraf dist && rimraf coverage",
"check-engines": "node ./node_modules/fbjs-scripts/node/check-dev-engines.js package.json",
"prebuild": "npm run clean && npm run check-engines",
"prepublishOnly": "npm run build",
"pretest": "npm run build",
"test": "npm run test:ci",
"test:ci": "jest --ci --collectCoverage --maxWorkers=2 --passWithNoTests"
},
"engines": {
"node": ">=20.x",
"npm": ">=10.8.x"
},
"devEngines": {
"node": ">=20.x",
"npm": ">=10.8.x"
},
"files": [
"package.json",
"dist",
"README.md"
],
"repository": {
"type": "git",
"url": "git+https://github.com/pedro2s/nestjs-http-async.git"
},
"author": "Pedro Santana",
"license": "MIT",
"bugs": {
"url": "https://github.com/pedro2s/nestjs-http-async/issues"
},
"homepage": "https://github.com/pedro2s/nestjs-http-async#readme",
"devDependencies": {
"@nestjs/common": "^10.4.11",
"@nestjs/core": "^10.4.11",
"@types/node": "^22.10.0",
"axios": "^1.7.8",
"fbjs-scripts": "^3.0.1",
"rimraf": "^6.0.1",
"typescript": "^5.7.2"
},
"keywords": [
"NestJS",
"HttpModule",
"Axios",
"HttpService",
"Async"
]
}