-
Notifications
You must be signed in to change notification settings - Fork 5
/
package.json
58 lines (57 loc) · 1.51 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
{
"name": "cf-docker-test-reporting",
"version": "1.2.0",
"description": "Generate test report",
"repository": {
"type": "git",
"url": "https://github.com/codefresh-io/cf-docker-test-reporting"
},
"main": "index.js",
"scripts": {
"eslint": "eslint ./src/**/*.js",
"test": "nyc mocha ./src/**/*.spec.js",
"report-coverage": "nyc report --reporter=text-lcov > coverage.lcov",
"lint": "eslint src"
},
"author": "Pasha <[email protected]>",
"license": "ISC",
"resolutions": {
"date-and-time": "0.14.2",
"json-bigint": "1.0.0",
"node-forge": "0.10.0",
"normalize-url": "4.5.1"
},
"dependencies": {
"@azure/storage-blob": "^12.0.1",
"@azure/storage-file": "^10.3.0",
"@codefresh-io/cf-variable-resolver": "^0.0.18",
"@google-cloud/storage": "^2.5.0",
"aws-sdk": "^2.359.0",
"bluebird": "^3.7.2",
"get-folder-size": "^2.0.1",
"lodash": "^4.17.21",
"minio": "^7.0.15",
"path": "^0.12.7",
"proxy-agent": "^4.0.1",
"recursive-readdir-sync": "^1.0.6",
"request": "^2.88.0",
"request-promise": "^4.2.2",
"retry-request" : "5.0.2",
"rimraf": "^2.7.1"
},
"devDependencies": {
"chai": "^3.5.0",
"eslint": "^3.17.1",
"eslint-config-airbnb": "^14.1.0",
"eslint-plugin-chai-friendly": "^0.3.6",
"eslint-plugin-import": "^2.14.0",
"eslint-plugin-jsx-a11y": "^4.0.0",
"eslint-plugin-mocha": "^4.11.0",
"eslint-plugin-react": "^7.11.1",
"mocha": "^7.2.0",
"nyc": "^15.1.0",
"proxyquire": "^2.1.0",
"sinon": "^1.17.7",
"sinon-chai": "^2.8.0"
}
}