forked from F5Networks/f5-appsvcs-templates
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
115 lines (115 loc) · 2.98 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
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
{
"name": "f5-appsvcs-templates",
"version": "1.9.0",
"author": "F5 Networks",
"license": "Apache-2.0",
"description": "",
"repository": "github:F5Networks/f5-appsvcs-templates",
"main": "nodejs/templateWorker.js",
"scripts": {
"lint": "eslint --ext .js,.vue nodejs lib presentation/app.js presentation/pages presentation/components test scripts stand-alone",
"test": "npm run testunit",
"testunit": "mocha --recursive \"./test/unit/*.js\"",
"testinteg": "mocha --recursive \"./test/integ/*.js\"",
"testtemplates": "mocha --recursive \"./test/templates/*.js\"",
"testall": "npm run lint && npm run testunit && npm run testtemplates",
"coverage": "nyc npm test",
"buildgui": "./scripts/build-presentation-layer.sh",
"buildrpm": "./scripts/rpmbuild.sh",
"build": "npm run buildgui && npm run buildrpm",
"version": "./scripts/fix-version.sh",
"start": "node --unhandled-rejections=strict stand-alone/app.js",
"watch": "NODE_ENV=development npm-watch"
},
"keywords": [
"as3",
"f5",
"rest",
"api"
],
"devDependencies": {
"@babel/cli": "^7.13.16",
"@babel/core": "^7.14.2",
"@babel/plugin-transform-runtime": "^7.14.2",
"@babel/preset-env": "^7.14.2",
"@f5devcentral/eslint-config-f5-atg": "^0.1.1",
"chai": "^4.3.3",
"chai-as-promised": "^7.1.1",
"css-loader": "^5.2.4",
"eslint": "^7.26.0",
"eslint-plugin-vue": "^7.9.0",
"express": "^4.17.1",
"marked": "^2.0.3",
"mocha": "^8.4.0",
"mock-fs": "^4.14.0",
"nock": "^13.0.11",
"node-polyfill-webpack-plugin": "^1.1.2",
"npm-watch": "^0.9.0",
"nyc": "^15.1.0",
"redoc-cli": "^0.10.4",
"sinon": "^10.0.0",
"vue": "^2.6.12",
"vue-loader": "^15.9.7",
"vue-router": "^3.5.1",
"vue-template-compiler": "^2.6.12",
"webpack": "^5.37.0",
"webpack-cli": "^4.7.0"
},
"eslintConfig": {
"extends": [
"@f5devcentral/eslint-config-f5-atg",
"plugin:vue/recommended"
],
"rules": {
"no-control-regex": "off",
"strict": "off",
"vue/html-indent": [
"error",
4
]
}
},
"nyc": {
"all": true,
"include": [
"nodejs/**/*.js",
"lib/**/*.js"
]
},
"watch": {
"buildgui": {
"patterns": [
"presentation/app.js",
"presentation/pages/",
"presentation/components/",
"webpack.config.js"
],
"extensions": [
"js",
"vue"
]
},
"start": {
"patterns": [
"lib",
"nodejs"
],
"extensions": "js"
}
},
"dependencies": {
"@babel/runtime": "^7.14.0",
"@f5devcentral/atg-shared-utilities": "^0.2.1",
"@f5devcentral/f5-fast-core": "^0.13.0",
"@f5devcentral/f5-teem": "^1.5.0",
"ajv": "^6.12.6",
"axios": "^0.21.1",
"core-js": "^3.12.1",
"deepmerge": "^4.2.2",
"extract-zip": "^1.7.0",
"fs-extra": "^8.1.0",
"jsonpath-plus": "^4.0.0",
"mustache": "^4.2.0",
"semver": "^7.3.5"
}
}