forked from F5Networks/f5-appsvcs-extension
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
88 lines (88 loc) · 2.78 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
{
"name": "f5-appsvcs",
"version": "3.44.0-3",
"license": "Apache-2.0",
"scripts": {
"build": "./scripts/build/build.sh",
"buildperf": "F5_PERF_TRACING_ENABLED='true' npm run build",
"build-schema": "node scripts/build/schema-build.js",
"lint": "npx eslint .",
"make-api-docs": "redoc-cli bundle docs/openapi.yaml",
"test": "npm run build-schema && mocha test/unit/ --recursive --exit",
"test-no-build": "mocha test/unit/ --recursive --exit",
"coverage": "nyc npm test",
"test-mutation": "npm run build-schema && npx stryker run",
"build-image": "./scripts/build/image-build.sh",
"smoke": "mocha test/integration/bigip/ --require test/integration/bigip/property/mochaHooks.js --recursive --grep '__smoke'",
"integration": "mocha test/integration/bigip/property test/integration/bigip/misc --require test/integration/bigip/property/mochaHooks.js",
"property": "mocha test/integration/bigip/property --require test/integration/bigip/property/mochaHooks.js",
"misc": "mocha test/integration/bigip/misc --require test/integration/bigip/property/mochaHooks.js"
},
"devDependencies": {
"@automation-toolchain/f5-appsvcs-schema": "^0.9.4",
"@f5devcentral/atg-shared-utilities-dev": "^0.2.12",
"@f5devcentral/eslint-config-f5-atg": "^0.1.8",
"aws-sdk": "^2.1316.0",
"chai": "^4.3.7",
"chai-as-promised": "^7.1.1",
"eslint": "7.32.0",
"express": "^4.18.2",
"f5-schema-doc": "file:packages/f5-schema-doc-0.1.0.tgz",
"json-schema-faker": "^0.5.0-rcv.46",
"mkdirp": "^2.1.3",
"mocha": "^10.2.0",
"mocha-multi-reporters": "^1.5.1",
"newman": "^5.3.2",
"nock": "10.0.0",
"nyc": "^15.1.0",
"proxyquire": "^2.1.3",
"rimraf": "^4.1.2",
"sinon": "7.5.0",
"winston": "^3.8.2"
},
"optionalDependencies": {
"@stryker-mutator/core": "^6.3.1",
"@stryker-mutator/mocha-runner": "^6.3.1",
"error": "7.2.1",
"jaeger-client": "^3.19.0",
"redoc-cli": "0.13.20"
},
"nyc": {
"reporter": [
"html",
"text",
"json-summary"
],
"exclude": [
"gulpfile.js",
"coverage/**",
"docs/**",
"test/**",
"scripts/**",
"test/integration/services/**",
"**/node_modules/**",
"**/dist/**",
"**/src/support/**"
]
},
"dependencies": {
"@f5devcentral/atg-shared-utilities": "^0.5.6",
"@f5devcentral/atg-storage": "^1.3.7",
"@f5devcentral/f5-teem": "^1.5.0",
"ajv": "6.12.6",
"deep-diff": "^1.0.2",
"fast-deep-equal": "^3.1.3",
"jiff": "0.7.3",
"jsonpointer": "^5.0.1",
"node-forge": "^1.3.1",
"semver": "5.7.1",
"uuid": "3.4.0",
"xml2js": "^0.4.23"
},
"eslintConfig": {
"extends": "@f5devcentral/eslint-config-f5-atg",
"rules": {
"no-control-regex": "off"
}
}
}