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
|
{
"name": "onap-dcae-deployment-handler",
"version": "4.2.2",
"description": "ONAP DCAE Deployment Handler",
"main": "deployment-handler.js",
"dependencies": {
"adm-zip": "^0.4.7",
"body-parser": "^1.15.0",
"express": "^4.13.4",
"log4js": "^0.6.33",
"swagger-ui-express": "latest",
"uuid": "^3.0.1",
"yamljs": "latest"
},
"devDependencies": {
"chai": "^4.1.2",
"chai-http": "^3.0.0",
"istanbul": "^0.4.5",
"mocha": "^3.5.3",
"nock": "^9.0.21"
},
"scripts": {
"test": "istanbul cover node_modules/mocha/bin/_mocha -- --reporter spec tests/",
"test-only": "mocha --reporter spec tests/",
"test-ci": "istanbul cover node_modules/mocha/bin/_mocha --report lcovonly -- --reporter spec tests/",
"test-cov": "istanbul cover node_modules/mocha/bin/_mocha -- --reporter dot tests/"
},
"author": "author",
"license": "(Apache-2.0)"
}
|