-
Notifications
You must be signed in to change notification settings - Fork 9
/
package.json
100 lines (100 loc) · 2.72 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
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
{
"name": "@syngenta-digital/pdt",
"author": "Paul Cruse, Enginering Lead Syngenta",
"main": "src/index.js",
"version": "1.0.7",
"license": "Apache-2.0",
"repository": {
"type": "git",
"url": "git+https://github.com/syngenta-digital/package-node-pdt.git"
},
"bugs": {
"url": "https://github.com/syngenta-digital/package-node-pdt/issues"
},
"bin": {
"pdt": "bin/pdt"
},
"scripts": {
"lint": "eslint src/**",
"test": "unittest=true nyc mocha --recursive",
"report": "nyc report --reporter=lcov"
},
"dependencies": {
"axios": "^1.1.3",
"https-proxy-agent": "^5.0.1",
"js-yaml": "^4.1.0",
"json-schema-ref-parser": "^9.0.9",
"minimist": "^1.2.7",
"yaml": "^2.1.3"
},
"devDependencies": {
"chai": "^4.2.0",
"eslint": "^7.18.0",
"eslint-config-airbnb": "^18.2.1",
"eslint-config-prettier": "^7.2.0",
"eslint-plugin-import": "^2.22.1",
"eslint-plugin-jsx-a11y": "^6.4.1",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-prettier": "^3.3.1",
"mocha": "^8.2.1",
"mocha-junit-reporter": "^2.0.0",
"mocha-multi-reporters": "^1.5.1",
"mochawesome": "^6.2.1",
"nyc": "^15.1.0",
"prettier": "^2.2.1",
"sinon": "^9.2.4"
},
"keywords": [
"postman",
"cicd",
"documentation-tests",
"syngenta-digital"
],
"engines": {
"node": ">=12.14.1"
},
"nyc": {
"temp-directory": "./node_modules/.nyc_output"
},
"eslintConfig": {
"env": {
"es6": true,
"mocha": true
},
"parserOptions": {
"ecmaVersion": 2018
},
"plugins": [
"prettier"
],
"extends": [
"plugin:prettier/recommended"
],
"rules": {
"prettier/prettier": [
"warn",
{
"trailingComma": "none",
"printWidth": 120,
"tabWidth": 4,
"singleQuote": true,
"bracketSpacing": false,
"arrowParens": "always"
}
],
"prefer-destructuring": 0,
"eqeqeq": "error",
"no-console": 0,
"guard-for-in": 0,
"no-await-in-loop": 0,
"no-restricted-syntax": 0,
"no-underscore-dangle": 0,
"camelcase": 0,
"global-require": 0,
"no-throw-literal": 0,
"no-param-reassign": 0,
"class-methods-use-this": 0,
"no-plusplus": 0
}
}
}