-
Notifications
You must be signed in to change notification settings - Fork 54
/
package.json
85 lines (85 loc) · 2.7 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
{
"name": "f5-appsvcs",
"version": "3.53.0-7",
"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": "redocly build-docs 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.51.6",
"@f5devcentral/atg-shared-utilities-dev": "^0.2.20",
"@f5devcentral/eslint-config-f5-atg": "^0.1.8",
"@redocly/cli": "^1.25.0",
"aws-sdk": "^2.1691.0",
"chai": "^4.3.10",
"chai-as-promised": "^7.1.2",
"eslint": "^8.53.0",
"f5-schema-doc": "file:packages/f5-schema-doc-0.1.1.tgz",
"json-schema-faker": "^0.5.6",
"mkdirp": "^3.0.1",
"mocha": "^10.7.3",
"mocha-multi-reporters": "^1.5.1",
"nock": "10.0.0",
"nyc": "^17.0.0",
"proxyquire": "^2.1.3",
"rimraf": "^6.0.1",
"sinon": "7.5.0",
"winston": "^3.14.2"
},
"optionalDependencies": {
"@stryker-mutator/core": "^8.5.0",
"@stryker-mutator/mocha-runner": "^8.5.0",
"error": "7.2.1",
"jaeger-client": "^3.19.0"
},
"nyc": {
"reporter": [
"html",
"text",
"json-summary"
],
"exclude": [
"gulpfile.js",
"coverage/**",
"docs/**",
"test/**",
"scripts/**",
"**/node_modules/**",
"**/dist/**",
"**/src/support/**"
]
},
"dependencies": {
"@f5devcentral/atg-shared-utilities": "^0.10.7",
"@f5devcentral/atg-storage": "^1.3.10",
"@f5devcentral/f5-teem": "^1.6.1",
"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.2",
"uuid": "3.4.0",
"xml2js": "^0.6.2"
},
"eslintConfig": {
"extends": "@f5devcentral/eslint-config-f5-atg",
"rules": {
"no-control-regex": "off"
}
}
}