-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
78 lines (78 loc) · 1.86 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
{
"name": "@f5devcentral/f5-fast-core",
"version": "0.24.0",
"author": "F5 Networks",
"license": "Apache-2.0",
"repository": "github:f5devcentral/f5-fast-core",
"main": "index.js",
"description": "The core module for F5 Application Services Templates",
"scripts": {
"test": "mocha --exclude test/cli.js",
"test.cli": "mocha test/setup-logging.js test/cli.js",
"test.all": "mocha",
"lint": "eslint lib test index.js cli.js --ignore-pattern jsoneditor.js",
"buildbin": "./scripts/build-fastbin.sh",
"coverage": "nyc -r text -r html npm test",
"coverage.all": "nyc -r text -r html npm run test.all"
},
"keywords": [
"as3",
"f5",
"rest",
"api"
],
"bin": {
"fast": "./cli.js"
},
"devDependencies": {
"@f5devcentral/eslint-config-f5-atg": "^0.1.8",
"chai": "^4.3.10",
"chai-as-promised": "^7.1.1",
"eslint": "^8.50.0",
"eslint-plugin-import": "^2.28.1",
"mocha": "^10.2.0",
"nock": "^13.3.3",
"nyc": "^15.1.0"
},
"eslintConfig": {
"extends": "@f5devcentral/eslint-config-f5-atg",
"rules": {
"no-control-regex": "off",
"arrow-parens": [
"error",
"as-needed",
{
"requireForBlockBody": true
}
],
"max-classes-per-file": "off"
},
"parserOptions": {
"ecmaVersion": 8
}
},
"nyc": {
"all": true,
"include": [
"lib/**/*.js",
"cli.js"
],
"exclude": [
"lib/jsoneditor.js"
]
},
"dependencies": {
"@apidevtools/json-schema-ref-parser": "9.0.9",
"@f5devcentral/atg-storage": "^1.3.9",
"adm-zip": "^0.5.10",
"ajv": "^6.12.6",
"axios": "^0.27.2",
"deepmerge": "^4.3.1",
"js-yaml": "^4.1.0",
"jsonpath-plus": "^4.0.0",
"math-expression-evaluator": "^1.4.0",
"merge-lite": "^1.0.2",
"mustache": "^4.2.0",
"yargs": "^17.7.2"
}
}