forked from ibm-maximo-dev/maximodev-cli
-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
53 lines (53 loc) · 1.68 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
48
49
50
51
52
53
{
"name": "masmanagedev-cli",
"version": "1.0.0",
"description": "Maximo Manage developer command line tools",
"main": "src/masmanagedev-cli.js",
"bin": {
"masmanagedev-cli": "src/masmanagedev-cli.js"
},
"scripts": {
"clean": "rm -rf build",
"pretest": "rm -rf build/test && mkdir -p build/test/ && cp test/addon.properties build/test/",
"test": "MAXIMO_ADDON_PROPERTIES=build/test/addon.properties MAXIMODEV_CLI_DEVBUILD=1 mocha test/",
"posttest": "npm run testcmds",
"pretestcmds": "rm -rf build/testcmds && mkdir -p build/testcmds/ && cp test/addon.properties build/testcmds/",
"testcmds": "MAXIMO_ADDON_PROPERTIES=build/testcmds/addon.properties MAXIMO_CLI_NO_PROMPT=Y MAXIMODEV_CLI_DEVBUILD=1 mocha testcmds/",
"test1": "MAXIMO_ADDON_PROPERTIES=build/test/addon.properties mocha $1"
},
"author": "sls@ca.ibm.com",
"license": "MIT",
"repository": "nishi2go/masmanagedev-cli",
"dependencies": {
"archive": "0.0.2",
"archiver": "2.1.1",
"commander": "^2.18.0",
"dateformat": "^3.0.3",
"dotenv": "^6.0.0",
"fs-extra": "^5.0.0",
"inquirer": "6.2.0",
"json2yaml": "^1.1.0",
"mustache": "^2.3.2",
"node-unzip-2": "^0.2.7",
"prompt": "^1.0.0",
"properties-parser": "^0.3.1",
"readline-sync": "^1.4.9",
"request": "^2.88.0",
"shelljs": "^0.8.4",
"tar-fs": "^1.16.3",
"temporary-directory": "^1.0.2",
"tmp": "0.0.33",
"tzdata": "^1.0.26",
"uuid": "3.2.1",
"xml-escape": "^1.1.0",
"xml-js": "^1.6.7",
"xml2js": "^0.4.19",
"xmldom": "^0.1.27",
"zip": "^1.2.0"
},
"devDependencies": {
"chai": "^4.1.2",
"chai-files": "^1.4.0",
"mocha": "^5.2.0"
}
}