-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
64 lines (64 loc) · 1.31 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
54
55
56
57
58
59
60
61
62
63
64
{
"name": "easy-pix",
"description": "Pix payments made easy for developers build arround payment gateways",
"version": "1.2.0",
"main": "./dist/index.js",
"types": "./dist/index.d.ts",
"files": [
"dist"
],
"scripts": {
"build": "tsc",
"test": "jest",
"dev": "ts-node-dev ./src/index.ts",
"start": "ts-node ./src/index.ts",
"commit": "cz"
},
"repository": {
"type": "git",
"url": "git+https://github.com/eletroswing/EasyPix.git"
},
"keywords": [
"easy",
"pix",
"payment",
"js",
"node",
"brasil",
"gateway"
],
"author": "eletroswing",
"license": "MIT",
"bugs": {
"url": "https://github.com/eletroswing/EasyPix/issues"
},
"homepage": "https://github.com/eletroswing/EasyPix#readme",
"devDependencies": {
"@types/jest": "^29.5.11",
"@types/node-schedule": "^2.1.5",
"commitizen": "^4.3.0",
"jest": "^29.7.0",
"ts-jest": "^29.1.1",
"ts-node": "^10.9.2",
"ts-node-dev": "^2.0.0",
"typescript": "^5.3.3"
},
"dependencies": {
"axios": "^1.6.4",
"http-status-codes": "^2.3.0",
"node-schedule": "^2.1.1"
},
"presets": [
[
"@babel/preset-env",
{
"modules": "commonjs"
}
]
],
"config": {
"commitizen": {
"path": "cz-conventional-changelog"
}
}
}