-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
51 lines (51 loc) · 1.19 KB
/
Copy pathpackage.json
File metadata and controls
51 lines (51 loc) · 1.19 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
{
"name": "ecocash",
"version": "1.0.10",
"main": "build/ecocash.js",
"exports": {
".": {
"import": "./build/ecocash.js",
"require": "./build/ecocash.js",
"types": "./build/ecocash.d.ts"
}
},
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"build": "tsc",
"dev": "concurrently \"npm run build -- --watch\" \"npm run start\"",
"start": "node build/index.js",
"lint": "gts lint",
"clean": "gts clean",
"compile": "tsc",
"fix": "gts fix",
"prepare": "npm run compile",
"pretest": "npm run compile",
"posttest": "npm run lint",
"check-imports": "node testfile.js"
},
"keywords": [
"ecocash",
"ecocash-sdk",
"ecocash-open-api"
],
"author": "Takunda Madechangu",
"license": "MIT",
"description": "Ecocash Javascript SDK",
"devDependencies": {
"@types/node": "^22.7.5",
"concurrently": "^9.2.1",
"gts": "^6.0.2",
"typescript": "^5.6.3"
},
"dependencies": {
"axios": "^1.11.0",
"debug": "^4.4.1"
},
"repository": {
"type": "git",
"url": "https://github.com/takumade/ecocash.git"
},
"bugs": {
"url": "https://github.com/takumade/ecocash/issues"
}
}