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
|
{
"name": "sdc-pubsub",
"version": "1.0.18",
"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"
},
"keywords": [
"sdc",
"pubsub",
"sdc-pubsub",
"onap"
],
"devDependencies": {
"awesome-typescript-loader": "^3.1.3",
"typescript": "2.7.2",
"webpack": "4.12.0",
"webpack-cli": "^3.1.0",
"rimraf": "^2.6.2"
}
}
|