-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
38 lines (38 loc) · 1.01 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
{
"name": "f5-cloud-onboarder",
"version": "0.9.0",
"description": "Cloud Onboarder for F5 BIG-IP",
"author": "James Sevedge",
"license": "Apache 2.0",
"scripts": {
"cli": "node ./src/cli.js",
"build": "bash scripts/build_package.sh",
"build-code-docs": "jsdoc -r src/lib -d ./code-docs/",
"lint": "eslint src"
},
"dependencies": {
"commander": "^4.1.0",
"js-yaml": "^3.13.1",
"request": "^2.88.0"
},
"devDependencies": {
"@f5devcentral/eslint-config-f5-atg": "^0.1.1",
"eslint": "^6.8.0",
"eslint-config-airbnb-base": "^14.0.0",
"eslint-plugin-import": "^2.20.0",
"jsdoc": "^3.6.3"
},
"eslintConfig": {
"extends": "@f5devcentral/eslint-config-f5-atg",
"rules": {
"func-names": "off",
"max-classes-per-file": [
2,
5
]
},
"parserOptions": {
"ecmaVersion": 8
}
}
}