-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
62 lines (62 loc) · 1.53 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
{
"name": "nestjs-juno",
"version": "0.3.4",
"description": "Nestjs Juno desenvolvido por SaveCash.",
"main": "dist/index.js",
"author": "douglasgc <[email protected]>",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/SaveCashOficial/nestjs-juno"
},
"keywords": [
"nestjs",
"juno",
"payments",
"subscriptions",
"webhook",
"gateway"
],
"devDependencies": {
"@nestjs/testing": "^7.0.0",
"@types/jest": "^23.3.1",
"@types/node": "^12.20.16",
"coveralls": "^3.1.1",
"jest": "^24.9.0",
"prettier": "^1.14.2",
"supertest": "^3.3.0",
"ts-jest": "^23.1.4",
"typescript": "3.7.7"
},
"dependencies": {
"@nestjs/axios": "^0.0.1",
"@nestjs/common": "^7.0.0",
"@nestjs/core": "^7.0.0",
"@nestjs/platform-express": "^7.0.0",
"class-validator": "^0.13.1",
"reflect-metadata": "^0.1.12",
"rxjs": "^7.2.0"
},
"scripts": {
"test": "jest",
"coverage": "jest --coverage",
"coveralls": "yarn run coverage --coverageReporters=text-lcov | coveralls",
"test:watch": "jest --watch",
"build": "rm -rf ./dist && tsc",
"format": "prettier **/**/*.ts --ignore-path ./.prettierignore --write && git status",
"prepublish": "npm run format && npm run build"
},
"jest": {
"moduleFileExtensions": [
"js",
"json",
"ts"
],
"rootDir": "src",
"testRegex": ".spec.ts$",
"transform": {
"^.+\\.(t|j)s$": "ts-jest"
},
"coverageDirectory": "./coverage"
}
}