-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
60 lines (60 loc) · 1.58 KB
/
package.json
File metadata and controls
60 lines (60 loc) · 1.58 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
{
"name": "nest-edge",
"version": "2.0.4",
"description": "Use Edge.js templating engine in NestJs applecation.",
"main": "index.js",
"types": "index.d.ts",
"scripts": {
"prebuild": "rimraf dist",
"build": "npm test && npm run lint && tsc -p tsconfig.build.json",
"test": "jest --config ./jestconfig.json",
"lint": "eslint \"{src,apps,libs,test}/**/*.ts\" --fix",
"format": "prettier --write \"src/**/*.ts\"",
"changeset": "changeset",
"version": "changeset version && npm install --package-lock-only",
"release": "npm run build && changeset publish"
},
"repository": {
"type": "git",
"url": "git+https://github.com/dwekat/nest-edge.git"
},
"keywords": [
"NestJs",
"Edgejs",
"nest template engine",
"nest mvc"
],
"author": "Mustafa Dwaikat",
"license": "MIT",
"bugs": {
"url": "https://github.com/dwekat/nest-edge/issues"
},
"homepage": "https://github.com/dwekat/nest-edge#readme",
"engines": {
"node": ">=20.0.0"
},
"peerDependencies": {
"@nestjs/common": ">=10.0.0",
"@nestjs/core": ">=10.0.0"
},
"devDependencies": {
"@changesets/cli": "^2.30.0",
"@types/jest": "^30.0.0",
"@types/node": "^24.12.2",
"@typescript-eslint/eslint-plugin": "^8.58.1",
"eslint": "^9.39.4",
"eslint-config-prettier": "^10.1.8",
"eslint-plugin-prettier": "^5.5.5",
"jest": "^30.3.0",
"prettier": "^3.8.2",
"rimraf": "^6.1.3",
"ts-jest": "^29.4.9",
"typescript": "^5.9.3"
},
"dependencies": {
"edge.js": "^6.5.0"
},
"overrides": {
"js-yaml": "^4.1.1"
}
}