-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
47 lines (47 loc) · 1.12 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
{
"name": "dp-migrate",
"version": "1.0.0",
"description": "This module assists with the migration, analysis and decomposition of Datapower services.",
"main": "index.js",
"author": {
"name": "Miguel Mendoza",
"email": "miguelmendoza@google.com"
},
"contributors": [{
"name": "Maruti Chand",
"email": "marutichandc@google.com"
}],
"license": "Apache-2.0",
"bin": {
"dp-migrate": "./lib/dp-migrate.js"
},
"repository": {
"type": "git",
"url": "https://github.com/micovery/dp-migrate.git"
},
"dependencies": {
"decompress": "^4.2.0",
"easysoap": "^2.0.2",
"exceljs": "^1.6.3",
"json-to-pretty-yaml": "^1.2.2",
"lodash": "^4.17.11",
"log4js": "^3.0.6",
"mkdirp": "^0.5.1",
"replace-in-file": "^3.4.4",
"then-fs": "^2.0.0",
"xmldom": "^0.1.27",
"xpath": "0.0.27",
"yamljs": "^0.3.0",
"yargs": "^12.0.5"
},
"scripts": {
"build": "pkg -o dist/dp-migrate-1.0.0 --targets node12-macos-x64,node12-win-x64,node12-linux-x64 . "
},
"devDependencies": {
"pkg": "^4.4.9"
},
"engines": {
"node": ">12.0.0",
"npm": ">6.0.0"
}
}