-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
72 lines (72 loc) · 1.8 KB
/
package.json
File metadata and controls
72 lines (72 loc) · 1.8 KB
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
59
60
61
62
63
64
65
66
67
68
69
70
71
72
{
"name": "codefresh-sdk",
"version": "1.9.21",
"description": "Codefresh_api_swagger_3_0_specification",
"main": "index.js",
"author": {
"name": "Yaroslav Drachenko",
"email": "yaroslav@codefresh.io"
},
"scripts": {
"test": "jest --coverage --runInBand",
"eslint": "eslint lib/** helpers/** __tests__"
},
"engines": {
"node": ">=8.0.0"
},
"dependencies": {
"@codefresh-io/cf-receiver": "0.0.1-alpha19",
"bluebird": "^3.5.3",
"cf-errors": "^0.1.16",
"compare-versions": "^3.4.0",
"debug": "^4.1.1",
"decompress": "^4.2.1",
"decompress-targz": "^4.1.1",
"decompress-unzip": "^4.0.1",
"firebase": "git+https://github.com/codefresh-io/firebase.git#80b2ed883ff281cd67b53bd0f6a0bbd6f330fed5",
"fs-extra": "^7.0.1",
"js-yaml": "^3.13.1",
"jsonwebtoken": "^8.4.0",
"lodash": "~4.17.20",
"moment": "^2.24.0",
"recursive-readdir": "^2.2.2",
"request": "~2.88.2",
"request-promise": "~4.2.6",
"requestretry": "^4.1.2",
"swagger-client": "~3.12.2",
"uniqid": "^5.2.0",
"uuid": "^3.3.2"
},
"devDependencies": {
"eslint": "^4.11.0",
"eslint-config-airbnb-base": "^13.1.0",
"eslint-plugin-import": "^2.15.0",
"eslint-plugin-jest": "^22.2.1",
"eslint-plugin-mocha": "^5.2.1",
"jest": "^23.6.0"
},
"jest": {
"testEnvironment": "node",
"testPathIgnorePatterns": [
"/node_modules/"
],
"coveragePathIgnorePatterns": [
"/node_modules/",
"test-setup.js",
"defaults.js",
"/lib/logic/",
"/lib/auth/contexts",
"/helpers/cache.js",
"/helpers/jwt.js",
"/helpers/error.js"
],
"coverageThreshold": {
"global": {
"branches": 85,
"functions": 95,
"lines": 95,
"statements": 95
}
}
}
}