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
|
{
"name": "sdc-pubsub",
"version": "1.0.21",
"description": "Publish Subscribe library using post message for sdc plugins",
"main": "index.js",
"author": "Idan Amit",
"license": "Apache-2.0",
"scripts": {
"clean": "rimraf dist",
"build": "tsc && webpack --mode development",
"test": "jest"
},
"keywords": [
"sdc",
"pubsub",
"sdc-pubsub",
"onap"
],
"jestSonar": {
"reportPath": "coverage"
},
"devDependencies": {
"@types/jest": "^23.3.1",
"awesome-typescript-loader": "^3.1.3",
"jest": "^23.4.2",
"jest-sonar-reporter": "^2.0.0",
"rimraf": "^2.6.2",
"ts-jest": "^23.0.1",
"typescript": "2.7.2",
"webpack": "4.12.0",
"webpack-cli": "^3.1.0"
}
}
|