-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
33 lines (32 loc) · 808 Bytes
/
package.json
File metadata and controls
33 lines (32 loc) · 808 Bytes
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
{
"name": "@sthima/cielo-api-3.0",
"version": "1.0.3",
"private": false,
"description": "Cielo payment API",
"main": "dist/index.js",
"scripts": {
"build:live": "nodemon --exec ./node_modules/.bin/ts-node -- ./index.ts",
"build": "tsc",
"start": "npm run build:live",
"test": "echo \"Error: no test specified\" && exit 1"
},
"author": "Willian Gaspar",
"license": "ISC",
"dependencies": {
"json2typescript": "^1.2.0",
"request": "^2.88.0",
"request-promise": "^4.2.4",
"uuid": "^3.3.2"
},
"devDependencies": {
"@types/node": "^11.13.7",
"@types/request": "^2.48.1",
"@types/request-promise": "^4.1.43",
"@types/uuid": "^3.4.4",
"ts-node": "^8.1.0",
"typescript": "^3.4.5"
},
"publishConfig": {
"access": "public"
}
}