forked from Bassintag/dto-mapper
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
54 lines (54 loc) · 1.08 KB
/
Copy pathpackage.json
File metadata and controls
54 lines (54 loc) · 1.08 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
{
"name": "dto-mapper",
"version": "0.2.3",
"description": "Simple to use library to map DTO using typescript decorators",
"main": "dist/index.js",
"scripts": {
"build": "tsc",
"watch": "tsc --watch",
"test": "mocha -r ts-node/register 'test/**/*.ts'",
"coverage": "nyc npm run test",
"codecov": "codecov"
},
"files": [
"dist",
"README.md"
],
"keywords": [
"typescript",
"decorator",
"dto",
"mapping",
"rest",
"api",
"data-binding"
],
"author": "bassintag",
"license": "MIT",
"repository": "https://github.com/Bassintag/dto-mapper",
"dependencies": {},
"peerDependencies": {
"reflect-metadata": "^0.1.13"
},
"devDependencies": {
"typescript": "^4.2.3",
"reflect-metadata": "^0.1.13",
"@types/chai": "^4.2.15",
"@types/mocha": "^8.2.1",
"chai": "^4.3.4",
"mocha": "^8.3.2",
"ts-node": "^9.1.1",
"nyc": "^15.1.0",
"codecov": "^3.8.1"
},
"nyc": {
"extension": [
".ts"
],
"exclude": [
"**/*.test.ts"
],
"reporter": "lcov",
"all": true
}
}