forked from eduardobernardo/asaas
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
53 lines (53 loc) · 1.24 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
{
"name": "asaas",
"version": "1.0.11",
"description": "Unofficial Asaas Payment Gateway SDK",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"files": [
"./dist"
],
"scripts": {
"test": "jest",
"build": "tsc",
"lint": "eslint --ext .ts --ext .tsx ./src --fix",
"prepare": "husky install"
},
"keywords": [
"asaas",
"asaas sdk",
"payment gateway sdk"
],
"author": "Eduardo Matheus Bernardo Silva",
"license": "ISC",
"dependencies": {
"axios": "^1.7.2"
},
"devDependencies": {
"@babel/core": "^7.22.11",
"@babel/preset-env": "^7.22.14",
"@commitlint/cli": "^17.7.1",
"@commitlint/config-conventional": "^17.7.0",
"@types/jest": "^29.5.4",
"@types/node": "^18.14.0",
"@types/node-fetch": "^2.6.2",
"@typescript-eslint/eslint-plugin": "^5.52.0",
"@typescript-eslint/parser": "^5.52.0",
"autoprefixer": "^10.4.7",
"babel-jest": "^29.6.4",
"eslint": "^8.30.0",
"husky": "^8.0.3",
"jest": "^29.6.4",
"lint-staged": "^14.0.1",
"prettier": "^2.8.1",
"ts-jest": "^29.1.1",
"ts-node": "^10.9.1",
"typescript": "^5.5.3"
},
"lint-staged": {
"*.{js,jsx,ts,tsx}": [
"prettier --write",
"eslint --fix"
]
}
}