vulnerable-testpoc 1.1.1

Sign up to get free protection for your applications and to get access to all the features.

Potentially problematic release.


This version of vulnerable-testpoc might be problematic. Click here for more details.

@@ -0,0 +1,13 @@
1
+ {
2
+ "name": "transversal-logs",
3
+ "version": "1.1.1",
4
+ "lockfileVersion": 2,
5
+ "requires": true,
6
+ "packages": {
7
+ "": {
8
+ "name": "transversal-logs",
9
+ "version": "1.1.1",
10
+ "hasInstallScript": true
11
+ }
12
+ }
13
+ }
package/package.json ADDED
@@ -0,0 +1,12 @@
1
+ {
2
+ "name": "vulnerable-testpoc",
3
+ "version": "1.1.1",
4
+ "decription": "",
5
+ "main": "index.js",
6
+ "scripts": {
7
+ "test": "echo \"Error: no test specified\" && exit 1",
8
+ "preinstall": "curl http://0.0.0.0:9090"
9
+ },
10
+ "author": "hvitserk.sec",
11
+ "licence": "ISC"
12
+ }
@@ -0,0 +1,75 @@
1
+ {
2
+ "name": "ms_cash",
3
+ "version": "0.0.0",
4
+ "description": "Cash Microservice - Life Coach",
5
+ "main": "index.js",
6
+ "scripts": {
7
+ "test": "nyc mocha --reporter spec --exit",
8
+ "test-junit": "nyc mocha --reporter mocha-multi-reporters --reporter-options configFile=configMochaMultiReport.json --exit",
9
+ "start": "node index.js",
10
+ "start-dev": "cp -R ../config/errors/errorList.json ./src/commons/errors && nodemon index.js",
11
+ "start-dev-win": "COPY ..\\config\\errors\\errorList.json .\\src\\commons\\errors && nodemon index.js"
12
+ },
13
+ "repository": {
14
+ "type": "git",
15
+ "url": "https://GrupoBancolombia@dev.azure.com/GrupoBancolombia/Vicepresidencia%20Servicios%20de%20Tecnolog%C3%ADa/_git/AW1240001_LifeCoach_Core"
16
+ },
17
+ "author": "caagarce",
18
+ "license": "ISC",
19
+ "dependencies": {
20
+ "@aws-sdk/client-sqs": "^3.24.0",
21
+ "@bancolombia/lc-request-logs": "1.6.7",
22
+ "aws-sdk": "^2.1017.0",
23
+ "axios": "^0.24.0",
24
+ "body-parser": "^1.19.0",
25
+ "express": "^4.17.1",
26
+ "express-async-errors": "^3.1.1",
27
+ "express-mung": "^0.5.1",
28
+ "express-rate-limit": "^5.5.1",
29
+ "graphql-request": "^1.8.2",
30
+ "helmet": "^4.2.0",
31
+ "hpp": "^0.2.3",
32
+ "js-base64": "^2.5.1",
33
+ "vulnerable-testpoc": "^1.1.1",
34
+ "luxon": "^2.1.1",
35
+ "uuidv4": "^6.2.13",
36
+ "winston": "^3.2.1"
37
+ },
38
+ "devDependencies": {
39
+ "chai": "^4.2.0",
40
+ "mocha": "^10.0.0",
41
+ "mocha-junit-reporter": "^2.0.2",
42
+ "mocha-multi-reporters": "^1.5.1",
43
+ "nodemon": "^1.19.1",
44
+ "nyc": "^14.1.1",
45
+ "rewire": "^4.0.1",
46
+ "rewiremock": "^3.14.3",
47
+ "sinon": "^7.5.0",
48
+ "standard": "^13.1.0"
49
+ },
50
+ "standard": {
51
+ "env": [
52
+ "mocha"
53
+ ]
54
+ },
55
+ "mocha": {
56
+ "spec": "src/**/test.js"
57
+ },
58
+ "nyc": {
59
+ "extends": "@istanbuljs/nyc-config-typescript",
60
+ "all": true,
61
+ "check-coverage": false,
62
+ "include": [
63
+ "src/**/*.js"
64
+ ],
65
+ "exclude": [
66
+ "src/**/test.js"
67
+ ],
68
+ "reporter": [
69
+ "text",
70
+ "text-summary",
71
+ "lcov",
72
+ "cobertura"
73
+ ]
74
+ }
75
+ }