-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
47 lines (47 loc) · 1.14 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
{
"name": "@elisra-devops/dg-data-provider-azuredevops",
"version": "0.4.6",
"description": "A document generator data provider, aimed to retrive data from azure devops",
"repository": {
"type": "git",
"url": "https://github.com/assafushy/dg-data-provider-azuredevops.git"
},
"private": false,
"main": "./bin/index.js",
"types": "./bin/index.d.ts",
"scripts": {
"test": "jest --coverage --runInBand --forceExit",
"build": "tsc"
},
"devDependencies": {
"@types/jest": "^25.2.1",
"@types/request": "^2.48.5",
"dotenv": "^10.0.0",
"jest": "^26.0.1",
"jest-junit": "^10.0.0",
"npm": "^6.14.5",
"ts-jest": "^25.5.1",
"typescript": "^3.6.3"
},
"dependencies": {
"@types/xml2js": "^0.4.5",
"axios": "^0.19.2",
"request": "^2.88.2",
"winston": "^3.2.1",
"winston-transport-browserconsole": "^1.0.5",
"xml2js": "^0.4.23"
},
"jest": {
"preset": "ts-jest",
"testPathIgnorePatterns": [
"/bin/"
],
"reporters": [
"default",
"jest-junit"
]
},
"jest-junit": {
"output": "./junit.xml"
}
}