-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
39 lines (39 loc) · 925 Bytes
/
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
{
"name": "skeleton-mapper",
"version": "1.0.2",
"description": "",
"main": "dist/src/index.js",
"types": "dist/src/index.d.ts",
"repository": "https://github.com/RolandoAndrade/skeleton-mapper",
"scripts": {
"test": "jest",
"format": "prettier --write \"./src/**/*.ts\" \"./test/**/*.ts\"",
"build": "tsc"
},
"files": ["dist/src/**/*"],
"keywords": ["mapper","dto","entity"],
"author": "Rolando Andrade",
"license": "ISC",
"jest": {
"moduleFileExtensions": [
"js",
"json",
"ts"
],
"rootDir": "test",
"testRegex": ".spec.ts$",
"transform": {
"^.+\\.(t|j)s$": "ts-jest"
},
"coverageDirectory": "../coverage",
"testEnvironment": "node"
},
"devDependencies": {
"prettier": "^2.1.1",
"typescript": "^4.0.2",
"@types/jest": "^26.0.13",
"@types/node": "^14.6.4",
"jest": "^26.4.2",
"ts-jest": "^26.3.0"
}
}