-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
48 lines (48 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
{
"name": "cielo-api",
"version": "0.3.0",
"description": "Api cielo 3.0 nodejs com tipagem",
"main": "./dist/Cielo.js",
"types": "./dist/Cielo.d.ts",
"repository": {
"type": "git",
"url": "git+https://github.com/breitembach/cielo-api"
},
"scripts": {
"build": "tsc --build",
"dev2": "nodemon src/index.ts",
"dev": "./node_modules/nodemon/bin/nodemon.js -e ts --exec \"npm run build\"",
"test": "jest",
"testCoverage": "jest --coverage",
"prepublish": "npm run build"
},
"keywords": [
"api cielo",
"api pagamentos cielo",
"nodejs cielo",
"nodejs",
"sdk cielo"
],
"author": "Lucas Breitembach",
"license": "MIT",
"devDependencies": {
"@babel/core": "^7.6.0",
"@babel/preset-env": "^7.6.0",
"@babel/preset-typescript": "^7.6.0",
"@types/jest": "^24.0.18",
"@typescript-eslint/eslint-plugin": "^1.13.0",
"@typescript-eslint/parser": "^1.13.0",
"babel-core": "^7.0.0-bridge.0",
"babel-jest": "^24.9.0",
"eslint": "^5.16.0",
"eslint-config-google": "^0.13.0",
"eslint-config-prettier": "^4.1.0",
"jest": "^24.9.0",
"nodemon": "^1.19.2",
"ts-jest": "^24.1.0",
"typescript": "^3.6.3"
},
"dependencies": {
"axios": "^0.19.0"
}
}