forked from banzeh/cielo
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
63 lines (63 loc) · 1.48 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
{
"name": "cielo",
"version": "2.4.2",
"description": "Client para a API 3.0 da Cielo em node.js",
"main": "dist/index.js",
"scripts": {
"test": "npx ts-node node_modules/tape/bin/tape tests/**/*.ts",
"release": "standard-version",
"postversion": "git push --follow-tags",
"build": "npx tsc"
},
"repository": {
"type": "git",
"url": "git+https://github.com/banzeh/cielo.git"
},
"keywords": [
"cielo",
"cartao",
"credito",
"debito",
"mastercard",
"visa",
"pagamento",
"pay",
"recorrencia"
],
"author": "Flavio Takeuchi <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/banzeh/cielo/issues"
},
"homepage": "https://banzeh.github.io/cielo/",
"husky": {
"hooks": {
"commit-msg": "commitlint -E HUSKY_GIT_PARAMS"
}
},
"devDependencies": {
"@babel/preset-typescript": "^7.14.5",
"@commitlint/cli": "^8.3.5",
"@commitlint/config-conventional": "^8.3.4",
"@types/tape": "^4.13.2",
"cz-conventional-changelog": "^3.3.0",
"husky": "^4.3.8",
"jest": "^25.5.4",
"standard-version": "^8.0.1",
"tap-spec": "^5.0.0",
"tape": "^4.13.2",
"tape-promise": "^3.0.0",
"ts-node": "^8.10.1",
"typescript": "^3.9.10"
},
"dependencies": {
"camelcase-keys": "^6.2.2",
"@types/node": "^12.12.14",
"typed-rest-client": "^1.8.4"
},
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
}
}