-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
65 lines (65 loc) · 1.6 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
{
"name": "@ronatilabs/narango",
"version": "1.1.0",
"description": "A NestJS wrapper service for ArangoDB NodeJS driver",
"exports": "./dist/index.js",
"typings": "./dist/index.d.ts",
"engines": {
"node": "^18.0.0"
},
"files": [
"dist"
],
"scripts": {
"build": "tsc -p tsconfig.build.json",
"lint": "eslint 'lib/**/*.ts'",
"test": "jest",
"test:dev": "jest --watch",
"prepare": "husky"
},
"repository": {
"type": "git",
"url": "git+https://github.com/ronati/narango.git"
},
"keywords": [
"typescript",
"nodejs",
"nestjs",
"nestjs-service",
"arangodb"
],
"author": "Nargonath",
"license": "MIT",
"peerDependencies": {
"@nestjs/common": "^10.0.0",
"@nestjs/core": "^10.0.0",
"arangojs": "^8.0.0"
},
"devDependencies": {
"@commitlint/cli": "^19.3.0",
"@commitlint/config-conventional": "^19.2.2",
"@commitlint/cz-commitlint": "^19.2.0",
"@eslint/js": "^8.57.0",
"@jest/globals": "^29.7.0",
"@nestjs/common": "^10.2.7",
"@nestjs/core": "^10.2.7",
"@nestjs/testing": "^10.2.7",
"@semantic-release/changelog": "^6.0.3",
"@semantic-release/git": "^10.0.1",
"@types/node": "^20.8.7",
"arangojs": "^8.5.0",
"commitizen": "^4.3.0",
"commitlint": "^18.4.3",
"eslint": "^8.51.0",
"eslint-config-prettier": "^9.0.0",
"globals": "^15.0.0",
"husky": "^9.0.11",
"jest": "^29.7.0",
"lint-staged": "^15.0.2",
"prettier": "^3.0.3",
"semantic-release": "^22.0.5",
"ts-jest": "^29.1.1",
"typescript": "^5.2.2",
"typescript-eslint": "^7.4.0"
}
}