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
|
{
"name": "onap-dcae-deployment-handler",
"version": "6.1.0",
"description": "ONAP DCAE Deployment Handler",
"main": "deployment-handler.js",
"dependencies": {
"adm-zip": "0.4.11",
"body-parser": "1.19.0",
"express": "4.17.1",
"log4js": "6.1.2",
"swagger-ui-express": "4.1.3",
"uuid": "7.0.1",
"yamljs": "0.3.0"
},
"devDependencies": {
"chai": "4.2.0",
"chai-http": "4.3.0",
"mocha": "7.1.0",
"nock": "12.0.1",
"nyc": "15.0.0"
},
"scripts": {
"start": "node deployment-handler.js",
"test": "mocha --reporter spec --exit \"./tests/*.js\"",
"coverage": "nyc --reporter html --reporter text npm test"
},
"engines": {
"node": ">=10.16.3"
},
"author": "Jack Lucas",
"contributors": [
"Alex Shatov",
"Shadi Haidar"
],
"license": "(Apache-2.0)"
}
|