-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
41 lines (41 loc) · 1.17 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
{
"name": "toyyibpay-sdk",
"version": "1.0.2",
"main": "dist/index.js",
"types": "src/index.ts",
"files": [
"dist/**",
"src/**",
"README.md",
"tsconfig.json"
],
"repository": {
"type": "git",
"url": "git+https://github.com/fadhilx/toyyibpay-sdk-js.git"
},
"bugs": {
"url": "https://github.com/fadhilx/toyyibpay-sdk-js/issues"
},
"homepage": "https://github.com/fadhilx/toyyibpay-sdk-js",
"author": "Fadhil Ahmad",
"license": "MIT",
"dependencies": {
"axios": "^0.26.1",
"crypto": "^1.0.1",
"dotenv": "^16.0.0",
"form-data": "^4.0.0"
},
"scripts": {
"dev": "tsc --watch",
"build": "tsc --build",
"doc:build": "typedoc --plugin typedoc-plugin-markdown --out docs src/index.ts --excludePrivate",
"doc:watch": "nodemon --watch ./ -e ts,md --exec \"yarn doc:build\"",
"doc:serve": "nodemon --watch ./ -e ts,md --exec \"typedoc --plugin none --out .docs/ src/index.ts --excludePrivate && serve -n .docs\""
},
"devDependencies": {
"@types/node": "^17.0.25",
"typedoc": "^0.22.15",
"typedoc-plugin-markdown": "^3.12.1",
"typescript": "^4.6.3"
}
}