-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
69 lines (69 loc) · 1.94 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": "paystackly",
"description": "A Typescript/Javascript library written on top of paystack.",
"version": "1.1.7",
"main": "./dist/index.js",
"module": "./dist/index.mjs",
"types": "dist/index.d.ts",
"files": [
"dist",
"index.d.ts"
],
"private": false,
"dependencies": {
"axios": "^1.4.0",
"dotenv": "^16.3.1"
},
"scripts": {
"test": "nyc mocha --timeout 20000 --recursive dist/__tests__/** --exit",
"dev": "npm run clean & tsc -v && tsc -p tsconfig.json -w",
"build": "npm run clean & tsc -v & tsc -p tsconfig.json",
"lint": "tsc",
"ci": "npm run lint && npm run test && npm run build",
"release": "npm run ci && changeset version && changeset publish",
"report": "nyc -r text -r lcov report",
"clean": "rm -rf ./.nyc_output ./node_modules/.cache ./coverage ./dist",
"minify": "for file in dist/*/**.js; do terser $file -o ${file%.js}.js --compress --mangle; done",
"add-version": "npx changeset"
},
"devDependencies": {
"@changesets/cli": "^2.26.2",
"@types/chai": "^4.3.5",
"@types/dotenv": "^8.2.0",
"@types/mocha": "^10.0.1",
"@types/node": "^20.4.4",
"chai": "^4.3.7",
"mocha": "^10.2.0",
"nyc": "^15.1.0",
"terser": "^5.19.2",
"ts-node": "^10.9.1",
"typescript": "^5.1.6"
},
"keywords": [
"Paystack",
"Paystack api",
"Paystack library",
"paystack node",
"node paystack",
"Paystack with typescript"
],
"author": "Bernard Arhia",
"license": "MIT",
"exports": {
".": {
"types": "./index.d.ts",
"require": "./dist/index.js",
"import": "./dist/index.mjs"
},
"./package.json": "./package.json"
},
"repository": {
"url": "https://github.com/bernardarhia/paystackly",
"type": "Public"
},
"homepage": "https://bernardarhia.github.io/paystackly/",
"bugs": {
"url": "https://github.com/bernardarhia/paystackly/issues",
"email": "[email protected]"
}
}