-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
69 lines (69 loc) · 1.67 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
{
"name": "nestjs-paystack",
"version": "1.0.0",
"description": "Provides an injectable paystack client for nestjs modules",
"author": {
"name": "Seyi Adeleke"
},
"license": "MIT",
"main": "./lib/index.js",
"typings": "./lib/index.d.ts",
"files": [
"lib"
],
"repository": {
"type": "git",
"url": "https://github.com/seyi-adeleke/nest-paystack"
},
"scripts": {
"build": "tsc -p tsconfig.build.json",
"format": "prettier --write '**/*.md' '**/*.json' '**/*.ts' '**/*.yml' .prettierrc",
"prebuild": "rimraf lib",
"prepublish:npm": "npm run build",
"publish:npm": "npm publish --access public",
"coverage": "jest --coverage && cat ./coverage/lcov.info | ./node_modules/coveralls/bin/coveralls.js",
"test:watch": "jest --watch",
"test": "jest"
},
"devDependencies": {
"@nestjs/common": "^7.0.7",
"@nestjs/core": "^7.0.7",
"@nestjs/testing": "^7.0.7",
"@types/jest": "25.2.1",
"@types/node": "13.11.0",
"codecov": "3.7.1",
"coveralls": "3.1.0",
"jest": "25.2.7",
"paystack": "2.0.1",
"prettier": "2.0.2",
"reflect-metadata": "0.1.13",
"rimraf": "3.0.2",
"rxjs": "6.6.0",
"ts-jest": "25.2.1",
"typescript": "3.8.3"
},
"peerDependencies": {
"@nestjs/common": "^6.0.0",
"@nestjs/core": "^6.0.0",
"paystack": "2.0.1"
},
"keywords": [
"nestjs",
"paystack",
"payments"
],
"jest": {
"moduleFileExtensions": [
"js",
"json",
"ts"
],
"rootDir": "src",
"testRegex": ".spec.ts$",
"transform": {
"^.+\\.(t|j)s$": "ts-jest"
},
"coverageDirectory": "../coverage",
"testEnvironment": "node"
}
}