-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
41 lines (41 loc) · 1.15 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": "hanif-midtrans-node",
"version": "1.1.8",
"description": "Midtrans API Wrapper for NodeJS with typescript.",
"main": "./dist/index.js",
"repository": "https://github.com/hansputera/midtrans-node",
"author": "Hanif",
"license": "MIT",
"devDependencies": {
"@types/luxon": "^3.1.0",
"@types/node": "^16.11.12",
"@types/sha.js": "^2.4.0",
"@typescript-eslint/eslint-plugin": "^5.46.1",
"@typescript-eslint/parser": "^5.46.1",
"eslint": "^8.30.0",
"eslint-config-google": "^0.14.0",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-import": "^2.25.3",
"husky": "^8.0.2",
"lint-staged": "^13.1.0",
"prettier": "^2.8.1",
"rimraf": "^3.0.2",
"typedoc": "^0.23.22",
"typescript": "^4.9.4"
},
"dependencies": {
"axios": "^1.2.1",
"luxon": "^3.1.1",
"sha.js": "^2.4.11"
},
"scripts": {
"build": "rimraf dist && tsc --build tsconfig.json",
"lint": "eslint \"./src/**/*.ts\" --fix",
"prepare": "husky install",
"format": "prettier --write \"./src/**/*.+(ts|.d.ts)\"",
"docs": "typedoc"
},
"lint-staged": {
"**/*": "prettier --write --ignore-unknown"
}
}