This repository has been archived by the owner on Jan 7, 2021. It is now read-only.
-
-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathpackage.json
127 lines (127 loc) · 2.84 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
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
{
"name": "nestjsx-automapper",
"version": "0.0.0-development",
"license": "MIT",
"author": "Chau Tran",
"main": "dist/index.js",
"module": "dist/nest-automapper.esm.js",
"typings": "dist/index.d.ts",
"files": [
"dist"
],
"keywords": [
"nestjs",
"automapper",
"typescript"
],
"sideEffects": false,
"repository": {
"type": "git",
"url": "https://github.com/nestjsx/automapper.git"
},
"engines": {
"node": ">=8.0.0"
},
"scripts": {
"start": "tsdx watch",
"build": "tsdx build --format=cjs",
"postbuild": "rm -rf public",
"build:docs": "typedoc --out docs --target es6 --theme minimal --mode file src",
"test": "CI=true tsdx test --no-cache",
"test:cov": "CI=true tsdx test --coverage",
"lint": "tsdx lint src && lint-staged",
"commit": "git-cz",
"semantic-release": "semantic-release",
"deploy-docs": "ts-node tools/gh-pages",
"report-coverage": "cat ./coverage/lcov.info | ./node_modules/coveralls/bin/coveralls.js && rm -rf ./coverage"
},
"husky": {
"hooks": {
"pre-commit": "npm run test && git add . && npm run lint"
}
},
"prettier": {
"printWidth": 80,
"semi": true,
"endOfLine": "auto",
"singleQuote": true,
"trailingComma": "es5"
},
"commitlint": {
"extends": [
"@commitlint/config-conventional"
]
},
"config": {
"commitizen": {
"path": "node_modules/cz-conventional-changelog"
}
},
"lint-staged": {
"{src}/**/*.ts": [
"prettier --write"
]
},
"publishConfig": {
"access": "public"
},
"release": {
"branches": [
"master",
{
"name": "next",
"prerelease": true
}
]
},
"jest": {
"transform": {
".(ts|tsx)": "ts-jest"
},
"testEnvironment": "node",
"moduleFileExtensions": [
"ts",
"tsx",
"js"
],
"transformIgnorePatterns": [
"/node_modules/"
],
"coveragePathIgnorePatterns": [
"/node_modules/",
"/test/"
],
"collectCoverageFrom": [
"src/automapper.{module,provider}.{js,ts}"
]
},
"devDependencies": {
"@commitlint/cli": "11.0.0",
"@commitlint/config-conventional": "11.0.0",
"@nestjs/common": "^7.5.1",
"@nestjs/core": "^7.5.1",
"@nestjs/testing": "^7.6.5",
"@types/jest": "26.0.15",
"commitizen": "4.2.2",
"coveralls": "3.1.0",
"cz-conventional-changelog": "3.3.0",
"husky": "4.3.0",
"lint-staged": "10.5.1",
"prettier": "2.1.2",
"reflect-metadata": "0.1.13",
"semantic-release": "17.2.2",
"shelljs": "0.8.4",
"ts-node": "9.0.0",
"tsdx": "0.14.1",
"tslib": "2.0.3",
"typedoc": "0.18.0",
"typescript": "3.9.7"
},
"dependencies": {
"@nartc/automapper": "7.0.4"
},
"peerDependencies": {
"@nestjs/common": ">=7.0.0",
"reflect-metadata": ">=0.1.13"
}
}