-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
54 lines (54 loc) · 1.24 KB
/
package.json
File metadata and controls
54 lines (54 loc) · 1.24 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
52
53
54
{
"name": "@iof/devtools",
"version": "1.0.0",
"description": "Command-line tools and utilities for developing with the Islamic Open Finance Platform",
"main": "dist/index.js",
"bin": {
"iof": "bin/iof.js"
},
"scripts": {
"build": "tsc",
"dev": "tsc --watch",
"test": "jest",
"lint": "eslint src/",
"prepublishOnly": "npm run build"
},
"keywords": [
"cli",
"islamic-finance",
"api",
"devtools",
"shariah-compliant"
],
"author": "Islamic Open Finance",
"license": "Apache-2.0",
"repository": {
"type": "git",
"url": "https://github.com/Islamic-Open-Finance/iof-devtools.git"
},
"dependencies": {
"commander": "^11.1.0",
"chalk": "^5.3.0",
"ora": "^7.0.1",
"inquirer": "^9.2.12",
"axios": "^1.6.2",
"js-yaml": "^4.1.0",
"table": "^6.8.1",
"dotenv": "^16.3.1",
"jsonwebtoken": "^9.0.2",
"@iof/sdk": "^1.0.0"
},
"devDependencies": {
"@types/node": "^20.10.4",
"@types/jest": "^29.5.10",
"@types/inquirer": "^9.0.7",
"typescript": "^5.7.2",
"jest": "^29.7.0",
"eslint": "^8.54.0",
"@typescript-eslint/eslint-plugin": "^6.13.2",
"@typescript-eslint/parser": "^6.13.2"
},
"engines": {
"node": ">=18.0.0"
}
}