forked from F5Networks/f5-declarative-onboarding
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
70 lines (70 loc) · 1.75 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
{
"name": "f5-declarative-onboarding",
"version": "1.20.0-2",
"description": "F5 Declarative Onboarding",
"main": "index.js",
"repository": {
"type": "git",
"url": "git+https://github.com/F5Networks/f5-declarative-onboarding.git"
},
"keywords": [
"f5",
"declarative",
"onboarding",
"bigip",
"big-ip",
"bigiq",
"big-iq"
],
"author": "F5 Networks",
"license": "Apache-2.0",
"dependencies": {
"@f5devcentral/f5-cloud-libs": "^4.24.0",
"@f5devcentral/f5-teem": "^1.4.6",
"ajv": "6.12.6",
"deep-diff": "^1.0.2",
"is-in-subnet": "^4.0.1",
"uuid": "3.4.0"
},
"devDependencies": {
"@f5devcentral/atg-shared-utilities": "^0.1.1",
"@f5devcentral/eslint-config-f5-atg": "latest",
"@stryker-mutator/core": "^4.4.1",
"@stryker-mutator/mocha-runner": "^4.4.1",
"chai": "^4.3.0",
"chai-as-promised": "^7.1.1",
"colors": "^1.4.0",
"coveralls": "^3.1.0",
"eslint": "^7.21.0",
"eslint-config-airbnb-base": "^14.2.1",
"eslint-plugin-import": "^2.22.1",
"json-schema-ref-parser": "^9.0.7",
"mkdirp": "^1.0.4",
"mocha": "^8.3.0",
"node-ssh": "^11.1.1",
"nyc": "^15.1.0",
"request": "^2.88.2",
"sinon": "7.5.0",
"stryker-cli": "^1.0.0",
"winston": "2.4.4"
},
"scripts": {
"build": "scripts/build/build.sh",
"test": "mocha --recursive test/unit",
"integration": "mocha test/integration/test.js",
"coveralls": "nyc report --reporter=text-lcov | coveralls",
"coverage": "nyc npm test",
"lint": "eslint src test",
"test-mutation": "stryker run"
},
"nyc": {
"reporter": [
"html",
"text",
"json-summary"
]
},
"eslintConfig": {
"extends": "@f5devcentral/eslint-config-f5-atg"
}
}