-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
78 lines (78 loc) ยท 2.06 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
66
67
68
69
70
71
72
73
74
75
76
77
78
{
"name": "@vodyani/core",
"license": "MIT",
"version": "8.10.0",
"author": "ChoGathK",
"description": "๐ฉ๐ปโ๐ core is the top-level design package for vodyani scaffolding, providing a single responsibility module registrar for the different tiers.",
"homepage": "https://github.com/vodyani/core#readme",
"repository": {
"type": "git",
"url": "git+https://github.com/vodyani/core.git"
},
"bugs": {
"url": "https://github.com/vodyani/core/issues"
},
"keywords": [
"npm-package",
"vodyani",
"nestjs",
"core"
],
"files": [
"package.json",
"README.MD",
"LICENSE",
"dist"
],
"main": "dist/index.js",
"scripts": {
"local": "npm i && npm i @vodyani/eslint-config -D && npx husky install",
"build": "rm -rf dist && tsc",
"test": "jest",
"test:coverage": "jest --coverage",
"lint": "eslint ./src ./test && tsc",
"lint:fix": "eslint --fix --ext .ts src/ test/",
"lint:html-report": "eslint ./src ./test -f html -o eslint-report.html",
"lint:json-report": "eslint ./src ./test -f json -o eslint-report.json"
},
"publishConfig": {
"access": "public"
},
"eslintConfig": {
"extends": "@vodyani"
},
"commitlint": {
"extends": "@commitlint/config-conventional"
},
"jest": {
"testEnvironment": "node",
"testRegex": "(/test/.spec.*|(\\.|/)(test|spec))\\.(jsx?|tsx?)$",
"moduleNameMapper": {
"@/(.*)$": "<rootDir>/src/$1"
},
"transform": {
"^.+\\.js$": "babel-jest",
"^.+\\.ts$": "ts-jest"
},
"transformIgnorePatterns": [
"./node_modules/(?!(lodash-es|other-es-lib))"
]
},
"dependencies": {
"@nestjs/common": "8.4.7"
},
"devDependencies": {
"@commitlint/cli": "16.3.0",
"@commitlint/config-conventional": "16.2.4",
"@nestjs/testing": "8.4.7",
"@types/jest": "27.5.2",
"@types/node": "16.11.56",
"@types/supertest": "2.0.12",
"@vodyani/eslint-config": "^1.1.0",
"husky": "7.0.4",
"jest": "27.5.1",
"supertest": "6.2.4",
"ts-jest": "27.1.5",
"typescript": "4.8.2"
}
}